• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Python GUI experts

TecHNooB

Diamond Member
What's a simple library that will allow me to make a simple form with buttons, pictures, texts, and graphs?
 
I haven't used it in quite a while, but when I was in school, we used Tk with Python for creating a GUI:

http://docs.python.org/library/tk.html

I know that doesn't sound like a very strong recommendation, and it isn't. Python would not be my first choice for GUI creation, but I'm curious if there are other, better recommendations out there.
 
Last edited:
wxWidgets has bindings for Python.

So does Qt.

If you are writing for Ubuntu you might want to look at GTK bindings.
 
I've used Tk as well. I had always meant to go and fool with Qt, especially now that they opened up their usage licenses.
 
Hoping not to hijack this thread:

I've never done an GUI, but I'd like to be able to set up some simple interfaces as the front end for some utility tools of my own, how do PyQt and Tk compare? I guess I'm going to need something easy to learn with plenty of documentation and examples.

Once I've learned the basics of making GUIs, would it be advisable to use some sort of point'n'click tool for developoing GUIs? Something free to use (and reliable).

Eventually, are there any good tutorials (websites, pdf, videos, ...) out there for developign GUIs? I've been googling about that, but I'm afraid I'm not really sure what to look for.

Thank you in advance! 🙂
 
Hoping not to hijack this thread:

I've never done an GUI, but I'd like to be able to set up some simple interfaces as the front end for some utility tools of my own, how do PyQt and Tk compare? I guess I'm going to need something easy to learn with plenty of documentation and examples.

Once I've learned the basics of making GUIs, would it be advisable to use some sort of point'n'click tool for developoing GUIs? Something free to use (and reliable).

Eventually, are there any good tutorials (websites, pdf, videos, ...) out there for developign GUIs? I've been googling about that, but I'm afraid I'm not really sure what to look for.

Thank you in advance! 🙂

http://popdevelop.com/2010/04/setti...g-a-cross-platform-qt-python-gui-application/

^ Follow that and read one of the comments about how to use QtDeveloper. I got this setup so fast following that site's instructions 🙂
 
Back
Top