Python GUIs
pythonguis.com
Python GUIs
1–10 of 98 posts
Re: Python GUIs
#2this is the most modern GUI (in a console or not) framework you'll find for Python right now.
Re: Python GUIs
#3wxWidgets is mostly licensed under an LGPL analog with linking exceptions intended to permit distributing binaries under any license you choose. No part of wxWidgets, including wxPython, has a license more restrictive than the LGPL.
Re: Python GUIs
#4A few days ago I tried getting a simple PyQtWebengine example working using pyqt6 and failed miserably. It was a frustrating experience for sure
Re: Python GUIs
#5for Python GUIs (or "TUIs", or "a screen with colorful buttons and controls I can use with the mouse or keyboard but NOT a "GUI" " if that helps some of the responders to get through the day) I recommend considering a console-based GUI using the excellent Textual: https://textual.textualize.io/ this is the most modern GUI (in a console or not) framework you'll find for Python right now.
Re: Python GUIs
#6Personally, if I'm writing software that needs to talk to a human I'll just build a web interface instead of a GUI.
Re: Python GUIs
#7* Between starting and finishing this comment, someone brought up a third. Now we're up to seven!
Re: Python GUIs
#8Re: Python GUIs
#9I ended up making a flask app and launching a browser. It seemed to be 100x easier.
I would prefer to make native GUI apps but it's just so much more difficult.
Re: Python GUIs
#10The guide lists four different GUI frameworks and the comments (so far!) have listed two more.* None of them really have claim to being the good "default" (except maaaaaaaaybe tkinter) and all of the "GUI-knowledge" is fragmented across them. I like Python but whenever I have to make a GUI, I shy away. * Between starting and finishing this comment, someone brought up a third. Now we're up to seven!