user interface - Load webpage in Python GUI window -


i've searched on google , stackoverflow having trouble finding answer, though seems should easy do.

how can use python load url own window, rather in browser? imagine should trivial in tkinter or other gui package.

yeah. that's easy qwebview in pyqt/pyside

you instantiate new qwebview , pass url it

qwebview.load(qurl('http://www.www.pythoncentral.io')) 

you can read more here

http://pythoncentral.io/pyside-pyqt-tutorial-qwebview/

and in pyqt docs

http://pyqt.sourceforge.net/docs/pyqt4/qwebview.html


Popular posts from this blog

Apache NiFi ExecuteScript: Groovy script to replace Json values via a mapping file -

python 3.x - PyQt5 - Signal : pyqtSignal no method connect -