11

I looking for a GUI Builder for python

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

Image

pradyunsg
  • 18,287
  • 11
  • 43
  • 96
  • Has been asked several times before. http://stackoverflow.com/search?q=python+gui+designer – dF. Feb 09 '09 at 21:29

8 Answers8

8

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
  • 8,268
  • 8
  • 31
  • 38
5

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

Michael Walts
  • 443
  • 2
  • 8
4

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
  • 40,424
  • 5
  • 55
  • 128
2

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.

Jason Coon
  • 17,601
  • 10
  • 42
  • 50
2

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

1

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

brice
  • 24,329
  • 7
  • 79
  • 95
1

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

Baltimark
  • 9,052
  • 12
  • 37
  • 35
1

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

Ali Afshar
  • 40,967
  • 12
  • 95
  • 109