Python Forum
[Tkinter] WebPages in tkinter - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: [Tkinter] WebPages in tkinter (/thread-26825.html)



WebPages in tkinter - CharlieSchuyler - May-15-2020

Gui = TKinter
Using Place()

Question = Am i able to put a chromium pop up page on to tkinter place()
i want to put skyvector as a pop up display but i dont know how to do so.


RE: WebPages in tkinter - Larz60+ - May-15-2020

tkinter is old TCL/TK wrapper and currently (maybe forever) can't display web pages without first converting each page as an image
wxpython, kivy or Qt5 all have browser widgets

This compares wxpython and Qt5: https://opensource.com/article/17/4/pyqt-versus-wxpython
this compares PyQt and Kivy