Just experimenting a bit with the Pyside WebView. I lack the understanding of what is going on in the background, and am finding it difficult to figure out why the images are not loading:
from PySide.QtCore import *
from PySide.QtGui import *
from PySide.QtWebKit import *
import sys
app = QApplication(sys.argv)
webView = QWebView()
webView.load(QUrl('https://www.google.si/search?q=cats&newwindow=1&source=lnms&tbm=isch&sa=X&ei=NlOgU4n6IpPX7AbR7IDICA&ved=0CAgQ_AUoAQ&biw=1097&bih=557'))
webView.show()
app.exec_()
I found this: How do I get PySide QWebView to display all images? However, it either went over my head, or is not related. More likely the first.
Thank you for your help!