Skip to content

Instantly share code, notes, and snippets.

@allanfreitas
Forked from rodgomesc/WebBrowser.py
Created June 28, 2014 16:05
Show Gist options
  • Save allanfreitas/05b3ff6a9104da44e1a7 to your computer and use it in GitHub Desktop.
Save allanfreitas/05b3ff6a9104da44e1a7 to your computer and use it in GitHub Desktop.
from PySide.QtGui import QApplication
from PySide.QtCore import QUrl
from PySide.QtWebKit import QWebView
import sys
__autor__= 'Rodrigo Gomes'
app = QApplication(sys.argv)
b = QWebView()
b.load(QUrl('http:www.google.com'))
b.show()
app.exec_()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment