view feedworm-gui.py @ 16:3ffecc709da9

move fetch logic into Feed
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 28 Apr 2010 03:00:11 +0200
parents 42a225be7e56
children 6b5ceffabe49
line wrap: on
line source


from MainWindowController import MainWindowController
from PyQt4 import QtGui
import sys
from util import configureLogging, createSession

if __name__ == '__main__':
    configureLogging()
    session = createSession()
    
    app = QtGui.QApplication(sys.argv)
    mainWindowController = MainWindowController(session)
    mainWindowController.show()
    sys.exit(app.exec_())