view feedworm-gui.py @ 58:dcee24702dd7

Adding a feed now logs the exception if one occurred during retrieval. More normalization of feed entries before creating new FeedEntry objects.
author Dirk Olmes <dirk@xanthippe.ping.de>
date Fri, 23 Jul 2010 17:24:32 +0200
parents 12ed8b5fa08c
children b8bfd1bd6c55
line wrap: on
line source


import Database
from MainWindow import MainWindow
from Preferences import Preferences
from PyQt4 import QtGui
import sys
import util

if __name__ == '__main__':
    util.configureLogging()
    session = Database.createSession()
    
    app = QtGui.QApplication(sys.argv)
    mainWindow = MainWindow(session)
    
    maximized = Preferences(session).startMaximized()
    if maximized:
        mainWindow.showMaximized()
    else:
        mainWindow.show()

    sys.exit(app.exec_())