Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a good IDE for building GUI apps with Python [closed]

I am a beginner programmer and have learned most of what I know thus far from using delphi for the past couple of months. A month or so back I decided to give python a try as I was told it may be easier to learn and I really like the language. I guess I just seem to pick things up easier using it.

The only problem is that I can't seem to find a good IDE for it that works in the way that Delphi does. I want to create desktop apps with nice GUIs so it would be nice to have something similar to Delphi/Visual studio to work with.

I have searched around and could find anything. Was wondering if anyone could lend a hand.

Also, from what I have gathered Ironpython seems to be the same as python coding wise. I don't mind my apps only being able to work on windows. Is Python Tools a good option. I mean is it basically like using visual studio but with python code instead?

Any help is much appreciated.

Thanks.

like image 384
Gary Becks Avatar asked Oct 10 '22 20:10

Gary Becks


2 Answers

Boa Constructor is a classic RAD IDE for GUI applications (wxpython, both linux and windows). People is still using it but seems that development stopped some years ago. PythonCard is another RAD IDE I used in the past but also unmaintained right now

Although they are not IDEs, some tools are very helpful for GUI design like:
- wxglade (wxpython, included as a pluging in Stani Python Editor, only python2.x)
- qtdesigner (qt-pyqt or pyside, included in pyqt. Spyder IDE, build on pyqt, has a dedicated link to it. Works also for python 3.x)

like image 158
joaquin Avatar answered Oct 12 '22 08:10

joaquin


I use PyGTK to interact with GTK.

http://www.pygtk.org/docs/pygtk/gtk-class-reference.html

http://www.pygtk.org/pygtk2tutorial/

But there is also QT, and WXpython, that are worthy.

like image 43
Louis Avatar answered Oct 12 '22 09:10

Louis