Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WYSIWYG tool for programming GUI in Python? [closed]

I was hoping to find a tool similar to Borland Delphi or VisualBasic for Python. Basically, I want to be able to program Windows apps with ease, without actually having to code every single widget. Does such a software exist? Thanks!

like image 725
Bo Milanovich Avatar asked Sep 07 '11 02:09

Bo Milanovich


2 Answers

Here's one for wxPython:

http://wxglade.sourceforge.net/

like image 145
FogleBird Avatar answered Sep 22 '22 13:09

FogleBird


Here's how to do it using Qt Designer for Qt4.

http://diotavelli.net/PyQtWiki/Creating_GUI_Applications_with_PyQt_and_Qt_Designer

You might also want to have a look at traits. It's pretty easy for simple designs.

like image 43
Carl F. Avatar answered Sep 20 '22 13:09

Carl F.