Last active
August 29, 2015 14:03
-
-
Save rodgomesc/4c1c05a79bc86fbdb83b to your computer and use it in GitHub Desktop.
Navegador Web em Python com 11 linhas de código
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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