Mercurial > hg > Feedworm
view feedupdate-main.py @ 133:9e1e6b96d8b0
implement proxyHost/proxyPort in Preferences
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Tue, 23 Aug 2011 03:44:08 +0200 |
parents | 32a173cb081c |
children |
line wrap: on
line source
#!/usr/bin/env python import logging from backend.sqlalchemy.SqlAlchemyBackend import SqlAlchemyBackend if __name__ == "__main__": logging.basicConfig(level=logging.DEBUG) backend = SqlAlchemyBackend() backend.updateAllFeeds() backend.expireFeedEntries() backend.dispose()