views:

64

answers:

1

I want to take my mockups and export them to code using any python GUI library (wxpython, pyqt, etc). For example, this capability already exists for mockups->HTML/Javascript here:

http://www.balsamiq.com/products/mockups/community

I need a fast, easy, high level mockup tool like balsamiq, not a slow, low level tool like boa constructor.

Is there any combination of mockups/exporter tools like this for python?

+1  A: 

You can use the Qt Designer tool to do your mock-ups and then use the pyuic4 command line tool to convert the .pro file into Python code.

Here are some references if you get stuck:

http://diotavelli.net/PyQtWiki/Creating_GUI_Applications_with_PyQt_and_Qt_Designer

http://wiki.python.org/moin/JonathanGardnerPyQtTutorial

swanson