tags:

views:

2068

answers:

8

I looking for a GUI Builder for python

i know it exist, can see it in this image background

![http://i37.photobucket.com/albums/e84/rsauron/Picture5.png][1]

+4  A: 

That's glade, it actually produces XML, which can be used with the PyGTK library in python

Michael Walts
A: 

Tkinter is one of many GUI builders available for python. I prefer it.

Baltimark
yes, I overlooked that he wanted that specific gui builder. I'll leave the post for posterity.
Baltimark
Tkinter isn't GUI builder; It's a GUI library
volting
+3  A: 

It is Glade 3, a GUI Designer for GTK+. It generates an XML file representing your GUI. You can load this GUI later using PyGTK.

Specifically, the screenshot is running a Mac OS X port of Glade 3

Manuel Ceron
+2  A: 

The GUI designer isn't "for" python, it's for gtk+ and the associated language bindings known as pygtk.

there are two gui editors available:

anthony
What about Qt Designer and PyQt?
Steve S
both valid but OP was asking about what was visible in the linked screenshot, which shows gtk+.
anthony
Your answer is worded in such a way as to suggest that only two GUI editors currently exist.
Steve S
+2  A: 

I use PyQt (PyQt Homepage); it is built on the QT Toolkit (http://www.qtsoftware.com/).

If you are deploying to Windows, it works well with the py2exe module (py2exe).

It's fairly straightforward to use, especially if you already have experience with the QT libraries.

jcoon
+1  A: 

Gazpacho is almost a clone of Glade, but written in pure PyGTK. We (the PIDA team) are currently refurbishing it.

Ali A
+1  A: 

The one in the screenshot is Glade.

However, there are quite a few GUI-Builders for Python, as seen on http://wiki.python.org/moin/GuiProgramming

Specifically, the list starts at http://wiki.python.org/moin/GuiProgramming#line-80.
JasonFruit
A: 

A python GUI builder is boa-constructor, whcih uses the WxWidgets toolkit

brice