Creating Python GUI in eclipse?

I am wondering if there is a tool similar to http://www.eclipse.org/vep/ for Python? I would like to be able to use a tool like Visual Editor when creating the pygtk GUI. I am looking for tools to make the task of creating a GUI less tedious and interesting mainly.

+4
source share
3 answers

Glade is the best I've used. This is a standalone program, not an Eclipse plugin.

+1
source

I personally like WxWidgets . Not for Eclipse or GTK, but very simple and easy to use with wxPython.

0
source

There is a Python development plugin for Eclipse, from http://pydev.org . After installing in Eclipse, you will get the PyDev perspective.

0
source

Source: https://habr.com/ru/post/1342526/


All Articles