What is the best GUI module in python to work with? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 6

What is the best GUI module in python to work with?

I am new to python and wanna use some GUI.. found tkinter and qt

11th Mar 2017, 7:06 PM
Mohamed Shawky
Mohamed Shawky - avatar
3 Answers
+ 14
For game-related stuff, I recommend pygame. For 3D crazy things - pyglet. For advanced graphics and multi-platform magic - kivy.
11th Mar 2017, 8:14 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 10
I find that tkinter is easier than PyQt, but I'm weird :P. However, PyQt5 comes jam-packed with waaay more features than tkinter. One of my favorites so far is the following: from PyQt5 import QtCore, QtWidgets, QtWebEngineWidgets app = QApplication([]) v = QWebEngineView() v.setHtml('<html><body>Hello World!</body></html>') v.show() Check out the answer from this thread; I find that it's fairly accurate (regarding PyQt & tkinter): https://www.sololearn.com/Discuss/132875/?ref=app
15th May 2018, 3:37 AM
Fox
Fox - avatar
+ 4
For apps I recommend kivy for desktop applications pythonqt is easier than tkinter
12th Mar 2017, 2:20 PM
Yadagalla Jaswanth Kumar
Yadagalla Jaswanth Kumar - avatar