UI Python - How to do [closed]

0

I wrote a simple program in Python, and I need to make a GUI for it, what are the GUI Builder options today?

    
asked by anonymous 11.03.2014 / 13:22

1 answer

5

There are a few modules of the that allow you to do a graphical user interface:

The TkInter module is a widely used option. In the meantime if you want something more professional , you can use PyQt which is based on Qt, a platform for GUI development that has been produced by Nokia .

    
11.03.2014 / 13:56