GUI IDE with PyDev Eclipse

I have 2 weeks to complete my last project. I need an IDE GUI or GUI compatible with PyDev and Eclipse.

I cannot spend time learning something because the functionality is not yet complete. I am looking for a very simple graphical interface for a simulation game.

+4
source share
4 answers

PyQt is the fastest GUI development toolkit with IMO, in part because you can use Qt Designer to develop your GUI instead of hand-coding it.

You can also check pygame - http://www.pygame.org/news.html

+4
source

I need a graphical IDE or GUI framework compatible with PyDev and Eclipse.

There is a built-in graphical editor no Eclipse for any of the Python GUIs, but it is not so bad. Do you really need it to be integrated into Eclipse?

The closest you can get is to use Jython and use some swing GUI editor.

Depending on the structure you want to use (GTK + / QT3 / QT4 / wxWidgets), you can choose a graphical graphics editor.

I cannot spend time learning something because the functionality is not yet complete.

No matter what tool we give you , you will have to learn how to use it .

I am looking for a very simple graphical interface for a simulation game.

If you want to develop a game, you should take a look at PyGame ( must read ) and Cocos2D , although there are many more than others .

+2
source

This page http://wiki.python.org/moin/GuiProgramming contains a fairly complete list of gui frameworks and gui compilers. I don't have too much experience creating gui's, but I did a bit of work with WxPython and PyQt. Both seem pretty easy to quickly get basic gui.

I did not use the gui constructor, but manual gui encoding in python is not as painful as in other languages, in my opinion, therefore I do not think that they are really necessary for a simple gui.

In addition, I think that any of these frameworks will be compatible with PyDev and Eclipse. You just need to install the library and import it into existing code.

+1
source

I just installed my tutorial below. try

0
source

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


All Articles