You are not logged in.
Hey guys,
I want to make nice GUIs that can be run across multiple platforms.
So far I have tried: 1 - tkinter, and found it difficult to make things look aesthetic and professional
2 - Qt, which is excellent, but relies on an object oriented based system to build guis which is a super strange old school approach that I struggle to get behind.
I ran into a professional coder last night who told me that if I'm trying to build guis for python, in python, I'm "doing it wrong" from the get go, and that I'd be better off visualising my python code in react or a language made for visuals, however, I am struggling to work out where to begin or how to construct a good GUI with a python based structure underneath.
Does anyone have some recommendations? I am all ears and would appreciate any direction at all, thank you.
Last edited by Ressler (2019-12-08 15:25:41)
Offline
It is a while since I have coded python, but FWIW...
TKinter is the easiest, but difficult to get looking nice
GTK guis are common: have a look at the Helium bl-exit code to see how that was put together. A more complex gui is terminator. However I found that the GTK was horrible to delve into; and they keep changing it
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline
...
2 - Qt, which is excellent, but relies on an object oriented based system to build guis which is a super strange old school approach that I struggle to get behind.
.....
You can write tkinter or python-gtk with objects and classes. "Old school" to me implies pre-OOP coding!
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline