Search code examples
pythonidepyqtqwebview

PyQt QWebView Email access


Is there a way to access a website (e.g. email) through the QWebView widget in monkey studio using python?

Thanks in advance.


Solution

  • In the documentation I think it's pretty clear:

    wv = QtWebKit.QWebView()
    wv.load( QtCore.QUrl( 'http://www.google.com' ))
    wv.show()