diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-01-21 08:05:39 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-01-21 08:05:39 +0100 |
commit | 2b5cedd394f9219b605a0e9cd7f89335b338b62e (patch) | |
tree | d2b1ac57fa10e6b0c78e099edac404945b5752a4 /fetch.py | |
parent | Order feeds by title for the HTML export. (diff) | |
download | newspipe-2b5cedd394f9219b605a0e9cd7f89335b338b62e.tar.gz newspipe-2b5cedd394f9219b605a0e9cd7f89335b338b62e.tar.bz2 newspipe-2b5cedd394f9219b605a0e9cd7f89335b338b62e.zip |
First implementation with asyncio (not really async for the moment).
Diffstat (limited to 'fetch.py')
-rwxr-xr-x | fetch.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -30,5 +30,4 @@ if __name__ == "__main__": for user in users: if user.activation_key == "": print("Fetching articles for " + user.nickname) - feed_getter = crawler.FeedGetter(user.email) - feed_getter.retrieve_feed(feed_id) + feed_getter = crawler.retrieve_feed(user, feed_id) |