Mercurial > hg > Feedworm
view feedupdate.py @ 213:524cbf9e413c
use correct TODO tags so they show up in the tasks view in Eclipse
author | dirk |
---|---|
date | Wed, 28 Nov 2012 01:53:29 +0100 |
parents | 5b131f82057d |
children | bb3c851b18b1 |
line wrap: on
line source
#!/usr/bin/env python import BackendFactory import logging if __name__ == "__main__": logging.basicConfig(level=logging.DEBUG) backend = BackendFactory.createBackend() backend.updateAllFeeds() backend.expireFeedEntries() backend.dispose()