Skip to content

Instantly share code, notes, and snippets.

@rodgomesc
Last active August 29, 2015 14:03
Show Gist options
  • Save rodgomesc/4c1c05a79bc86fbdb83b to your computer and use it in GitHub Desktop.
Save rodgomesc/4c1c05a79bc86fbdb83b to your computer and use it in GitHub Desktop.
Navegador Web em Python com 11 linhas de código
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('https://youtu.be/QXG-Rsmrt4A?list=PLe1Buo9ERpeVkq-3aqxBSeriyV-didkwW'))
b.show()
app.exec_()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment