diff options
-rwxr-xr-x | feedgetter.py | 3 | ||||
-rwxr-xr-x | pyAggr3g470r.py | 13 | ||||
-rwxr-xr-x | utils.py | 8 |
3 files changed, 24 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): """ diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index 87ad6303..2734a9a8 100755 --- a/pyAggr3g470r.py +++ b/pyAggr3g470r.py @@ -26,6 +26,19 @@ __revision__ = "$Date: 2011/09/26 $" __copyright__ = "Copyright (c) Cedric Bonhomme" __license__ = "GPLv3" +# +# This file contains the "Root" class which describes +# all pages of pyAggr3g470r. These pages are: +# - main page; +# - management; +# - history; +# - history; +# - favorites; +# - notifications; +# - unread; +# - feed summary. +# + import os import re import time @@ -26,6 +26,14 @@ __revision__ = "$Date: 2011/04/15 $" __copyright__ = "Copyright (c) Cedric Bonhomme" __license__ = "GPLv3" +# +# This file provides functions used for: +# - the database management; +# - generation of tags cloud; +# - HTML processing; +# - mail notifications. +# + import re import hashlib import sqlite3 |