PySimpleGUI 6
11–20 of 64 posts
Re: PySimpleGUI 6
#12However I ended up settling on making a Web UI served via FastAPI. I'm still happy about that decision but this one sounded really nice back then.
Re: PySimpleGUI 6
#13I remember looking into GUI libraries for Python a while back and this one and qt came up. However I ended up settling on making a Web UI served via FastAPI. I'm still happy about that decision but this one sounded really nice back then.
Re: PySimpleGUI 6
#14Re: PySimpleGUI 6
#15There are a few downsides... there are better options than C++ these days (Rust most obviously), QtWidgets is in maintenance mode, it's a bit of a pain to make an installer from your app, and it doesn't really support modern styling.
But I'd still pick it over this in a heartbeat.
Re: PySimpleGUI 6
#16I remember looking into GUI libraries for Python a while back and this one and qt came up. However I ended up settling on making a Web UI served via FastAPI. I'm still happy about that decision but this one sounded really nice back then.
WebUI (assuming you're mean python-WebUI) doesn't actually include any UI. This is why PySimpleGUI is nice...you can make a button!
Re: PySimpleGUI 6
#17Hmm apart from distribution (which is a pain to set up) I still don't think you can beat QtWidgets and QtCreator for simplicity of getting a professional GUI. It has a form editor that actually works. I think maybe the only one I've ever used. Then you can pretty much just click on buttons and add event handlers. Very easy to get going and it scales very far. There are a few downsides... there are better options than…
Re: PySimpleGUI 6
#18I think AI coding has made these "we dumb down a real UI framework for you" libraries obsolete. Anyone can get a GTK or QT app up and running now. This isn't a criticism, they were very useful to build GUIs in the past, but now they are just obsolete and more likely to introduce bugs or limitations you can't work around than to help much.
I.e., "too human-friendly to survive in the presence of The Great AI™".
If so, where does that lead us?
Re: PySimpleGUI 6
#19LESSON: N E V E R Use code that can "stop working" until you pay ransom. N E V E R.
At this point, it's irrelevant, because the LLMs can replace PySimpleGUI with PyQt etc so --- thanks but no thanks. I did like it because you could throw up something around a CLI and it looked at least presentable. Now, since 2025, nobody codes anymore, so ... seems to me, this PySimpleGUI 6 is just a bit of history.
Re: PySimpleGUI 6
#20I had heavily used PySimpleGUI in various work projects, and one day, when I had to run some older piece of code I had not run in a while, I get a notice that PySimpleGUI won't work, because was free, but nobody paid, and so, good luck! So I was piping mad, paid the 3-year or whatever the max license fee was, received a code, and THEN I was able to get my stuff to work, like it used to. LESSON: N E V E R Use code tha…