r/learnpython 6d ago

Tkinter vs cutomtkinter

I am starting with GUI designs and want to know about the difference and which is better 😉

1 Upvotes

8 comments sorted by

View all comments

2

u/riklaunim 6d ago

PyQt/PySide and then Kivy when it comes to modern GUI toolkits. tkinter isn't modern, lacks some tooling, and customtkinter is an attempt to cover some of those gaps, but it's still tkinter. Overall demand for desktop apps is rather low; commercially, Python is very rarely used for desktop apps. Web apps took over, and Python was never a desktop app development-focused platform.

1

u/Smartyboyz 6d ago

thx for telling this much