tags:

views:

585

answers:

5

What is the best program to use to make a python GUI?

I am new to the Python GUI programming and I have only used easygui so far, but it is not really what I want. Is there anything better?

answered

+3  A: 

For windowed applications, take a look at wxWidgets or gtk. You can also try using the built in Tkinter, but I find it not so pleasant to work with.

Claudiu
I prefer wxWidgets myself. It has always felt more natural to program in than Tkinter
Dan Goldsmith
+1  A: 

Refer previous posts on python GUI programming. That might help you in choosing the tools for your use.

http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development http://stackoverflow.com/questions/279707/making-a-python-gui

Viky
+3  A: 

This was asked here before, e.g. what python gui apis are out there. A comprehensive list is GuiProgramming at the Python wiki.

gimel
+1  A: 

Try filling out the form on this page: http://www.awaretek.com/toolkits.html. It will take your given priorities into account and suggest some GUI toolkits you could check out.

semadk
A: 

Also you can try PyQT, but there are problems in compiling PyQT program to exe.

Kirill Titov