Mercurial > hg > Feedworm
view feedworm-gui.py @ 35:aaec263f07ca
Feeds manage the point in time when the next update should happen. FeedUpdater only updates feeds that are due.
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Wed, 05 May 2010 03:07:59 +0200 |
parents | 6b5ceffabe49 |
children | 74b8c9a9d5de |
line wrap: on
line source
from MainWindow import MainWindow from PyQt4 import QtGui import sys from util import configureLogging, createSession if __name__ == '__main__': configureLogging() session = createSession() app = QtGui.QApplication(sys.argv) mainWindow = MainWindow(session) mainWindow.show() sys.exit(app.exec_())