view feedworm-gui.py @ 19:6f7003fc6e6d

display the summary of the selected feed entry
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 28 Apr 2010 04:00:30 +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_())