fetch newspapers and telegrams feeds

This commit is contained in:
Romain Bignon 2010-02-10 09:20:31 +01:00
commit 5a6860ec32
2 changed files with 69 additions and 0 deletions

View file

@ -23,11 +23,18 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
import sys
from dlfp import DLFP
class User:
def __init__(self, username, password, email):
self.username = username
self.password = password
self.email = email
class Application:
def __init__(self):
pass
def main(self, argv):
pass
if __name__ == '__main__':
app = Application()