diff options
Diffstat (limited to 'fetch.py')
-rw-r--r-- | fetch.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/fetch.py b/fetch.py new file mode 100644 index 00000000..c87df42c --- /dev/null +++ b/fetch.py @@ -0,0 +1,18 @@ +#! /usr/bin/env python +# -*- coding: utf-8 -*- + +# fetch.py +# +# You can use this script with cron, for example: +# */30 * * * * cd ~/.pyaggr3g470r/ ; python fetch.py +# to fetch articles every 30 minutes. + +import sys +import conf +from pyaggr3g470r import feedgetter + +if __name__ == "__main__": + # Point of entry in execution mode + print sys.argv[1] + feed_getter = feedgetter.FeedGetter(sys.argv[1]) + feed_getter.retrieve_feed(None) |