Languages/Python/PyKDE WebKit Tutorial/webkit1.py: Difference between revisions

From KDE TechBase
(New page: <code python> #!/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(Q...)
 
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
<code python>
<syntaxhighlight lang="python">
#!/usr/bin/env python
#!/usr/bin/env python


Line 14: Line 14:


sys.exit(app.exec_())
sys.exit(app.exec_())
</code>
</syntaxhighlight>

Latest revision as of 17:39, 10 March 2016

#!/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://kubuntu.org"))
web.show()

sys.exit(app.exec_())