aboutsummaryrefslogtreecommitdiff
path: root/fetch.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-01-21 08:05:39 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-01-21 08:05:39 +0100
commit2b5cedd394f9219b605a0e9cd7f89335b338b62e (patch)
treed2b1ac57fa10e6b0c78e099edac404945b5752a4 /fetch.py
parentOrder feeds by title for the HTML export. (diff)
downloadnewspipe-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-xfetch.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/fetch.py b/fetch.py
index 7203fe33..db950aa0 100755
--- a/fetch.py
+++ b/fetch.py
@@ -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)
bgstack15