Where can I find a GUI designer for Python?

Does anyone know of any python GUI designer like Glade, but for Windows?

+6
python user-interface glade
source share
6 answers

Glade / Gtk + for Windows is exactly like Glade, but for Windows.

+13
source share

I would suggest using PyQt and Qt-designer (WYSIWYG gui designer) to create cross-platform graphical applications.

Qt even went LGPL, which makes it even more attractive.

You can find PyQt at: http://www.riverbankcomputing.co.uk/software/pyqt/download

+5
source share
+2
source share

I am using PyQt ; It is built on the QT Toolkit .

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

This is a fairly simple use, especially if you already have experience with QT libraries.

Note : this was my answer to a similar question .

+2
source share

I am using wxGlade

+1
source share

This is deployed from the GUI toolkit you are using.

There is a boa-constructor for wxPython. This is a Delphi-like development environment.

+1
source share

All Articles