views:

108

answers:

5

I want to make programs to windows with interface and I want to know what is the best, or the easier program to make gui with Python, not in text mode, but like kinda Delphi works...

What should I get?

A: 

Tkinter

Though; if you want to make anything more sophisticated; be prepared - the documentation blows at times

Robus
A: 

The best depends on what you are looking for exactly. I suggest to read up on this list and select one. It includes both the toolkits and the associated IDEs.

wxWidgets, Qt, and Tkinter are all great choices for example that I've used before.

Brian R. Bondy
A: 

Tkinter-a built-in module for GUIs. http://docs.python.org/library/tkinter.html

CMC
tkinter has IDE?
Shady
As far as I know, no.
CMC
+1  A: 

Any of this (especial wxPython) will give you nice Windows looking apps.

http://www.wxpython.org/

http://www.pygtk.org/

+2  A: 

PyQT

kusut
learning curve like a cliff face though.
ebt