Skip to content

Instantly share code, notes, and snippets.

@eskatos
Created May 20, 2011 15:36
Show Gist options
  • Save eskatos/983181 to your computer and use it in GitHub Desktop.
Save eskatos/983181 to your computer and use it in GitHub Desktop.
simple pyqt4 webview
#!/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://google.fr"))
web.show()
sys.exit(app.exec_())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment