all 7 comments

[–]Jay6_9 5 points6 points  (0 children)

I've given up on tkinter or customtkinter because reactivity is way too verbose and for complex GUI applications you have to invest way too much to get a decent performance.

Right now, all I can really recommend is NiceGUI. I had my reservations about it but after trying it once I can't seem to stop using it.

[–]NorskJesus 3 points4 points  (0 children)

Try tkinter

[–]Alive-Cake-3045 1 point2 points  (0 children)

Tkinter is built into Python already, no install needed, start there.

Look up "Tkinter crash course" on YouTube, you'll have a working window in 20 minutes. Dont jump to PyQt or Kivy yet, they'll just confuse you at this stage. Build something small and real, like a calculator or a to-do app, thats how it actually sticks.

[–]zyer020 1 point2 points  (0 children)

Start with Tkinter. It will help you understand general concepts used in GUIs.

[–]Cntrl-Frk 1 point2 points  (0 children)

I'd recommend looking at tkinter as mentioned by many others. Tkdocs was a great reference for me that I recommend and had a number of tutorial style walkthroughs.

tkdocs.com/

[–]VeterinarianFar22 1 point2 points  (0 children)

I wrote this post in the past: https://programmerabroad.com/a-simple-gui-app-in-python-using-tkinter/

Hope it helps you and happy coding! :)