#!/usr/bin/env python import sys from PyQt4.QtCore import * from PyQt4.QtGui import * from PyQt4.QtWebKit import * app = QApplication(sys.argv) web = QWebView() web.load(QUrl("http://talk.maemo.org/index.php?styleid=11&styleid=15")) web.show() sys.exit(app.exec_())