summaryrefslogtreecommitdiff
path: root/watchnews-cli
diff options
context:
space:
mode:
Diffstat (limited to 'watchnews-cli')
-rwxr-xr-xwatchnews-cli5
1 files changed, 4 insertions, 1 deletions
diff --git a/watchnews-cli b/watchnews-cli
index f3c080a..b43d1c2 100755
--- a/watchnews-cli
+++ b/watchnews-cli
@@ -17,6 +17,8 @@ if __name__ == '__main__':
help='Update all known feeds')
parser.add_argument('--update-feed', type=int, metavar='ID',
help='Update feed with ID')
+ parser.add_argument('--test', type=str, metavar='URL',
+ help='Fetch URL with newspaper library and dump result for testing')
parser.add_argument('--remove', type=int, metavar='ID',
help='Remove feed with ID')
parser.add_argument('--list', action='store_true',
@@ -60,5 +62,6 @@ if __name__ == '__main__':
web.get_app().run(debug=args.web_debug)
if args.rss:
print(rss.rss())
-
+ if args.test:
+ fetch.dump_paper(args.test)