aboutsummaryrefslogtreecommitdiff
path: root/feedgetter.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-09-27 10:40:37 +0200
committercedricbonhomme <devnull@localhost>2011-09-27 10:40:37 +0200
commitfb698b7539715e1457feb2934e866aa713954355 (patch)
treef626ff16347554a0aed72df01682bd9c4048da71 /feedgetter.py
parentBugfix: wrong image url. (diff)
downloadnewspipe-fb698b7539715e1457feb2934e866aa713954355.tar.gz
newspipe-fb698b7539715e1457feb2934e866aa713954355.tar.bz2
newspipe-fb698b7539715e1457feb2934e866aa713954355.zip
Added more comments in headers.~
Diffstat (limited to 'feedgetter.py')
-rwxr-xr-xfeedgetter.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/feedgetter.py b/feedgetter.py
index 30fbc545..aa463b7d 100755
--- a/feedgetter.py
+++ b/feedgetter.py
@@ -42,6 +42,9 @@ list_of_threads = []
class FeedGetter(object):
"""
+ This class is in charge of retrieving feeds listed in ./var/feed.lst.
+ This class uses feedparser module from Mark Pilgrim.
+ For each feed a new thread is launched.
"""
def __init__(self):
"""
bgstack15