python guy ide

I

ionel

i'm looking for a clean gui for python with a visual editor of some sort
any sugestions (i know of wxPython but i want to find out if there are
other alternatives)
and it's on win32 :p
 
K

Kartic

Ionel,

There are IDE's based on wxPython like SPE and DrPython. SPE is great,
but it stops responding when I try to run my wxPython apps (probably
something I am doing!). DrPython is another free IDE and it is nice
too.
From what I have read, WingIDE is an excellent product (it is a
commercial product).

Actually , the "best" IDE depends on how you will be using it. If you
are looking at nifty debugging features I believe WingIDE is one of the
top environments.

SPE has it own GUI designer (basically invokes wxGlade), also has a 3D
modelling tool (Blender), does syntax checking using pycheck and has
good debug capabilities. From what I have seen, I like SPE quite a bit
(except for my wx programs hanging).

SPE - http://spe.pycs.net/
DrPython - http://drpython.sourceforge.net/
WingIDE - http://www.wingide.com/
You can google for Python IDE and see what comes up.

Thanks,
--Kartic
 
J

Jeff Shannon

Kartic said:
SPE is great,
but it stops responding when I try to run my wxPython apps (probably
something I am doing!).

I don't know about SPE specifically, but this is a common issue with a
lot of lower-end IDEs. The IDE is a GUI application, which operates
using an event loop. If the IDE runs user code in the same process
that it runs in itself, and if that user code also contains some sort
of event loop, then the two loops will interfere with each other (or
rather, the first loop won't run until the inner loop quits, which
tends to make Windows unhappy...)

Most commercial IDEs, I believe, run user code in a separate process
and thus avoid this problem. I *think* that IDLE now runs user code
out-of-process as well, but I'm not sure about that.

I can't afford to pay for an IDE for hobby purposes, so when I'm
writing GUI apps, I also keep a command shell open. Edit, save,
alt-tab to command shell, uparrow-enter to run program... not as
convenient as a toolbar button or hotkey, but it works.

Jeff Shannon
Technician/Programmer
Credit International
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,215
Messages
2,571,113
Members
47,718
Latest member
couriermedicines

Latest Threads

Top