IDE for Python that has GUI modeling

3

I would like to know if there is an IDE to program in Python that provides a tool to mount a GUI more easily, preferably with versions for Linux and Windows.

    
asked by anonymous 04.08.2016 / 14:22

1 answer

4

It depends on what you want. The IDE Anjuta has a good integration with Glade which is one of the most popular tools for designing UIs with GTK + .

But in the Python world you do not necessarily need to get stuck with a tool. I usually use PyCharm to encode and something like Glade , Qt Creator or wxFormBuilder to draw the screens. The choice of one tool or another will depend on the widget toolkit used in the project.

    
04.08.2016 / 17:07