vote up 183 vote down star
182

As a Python newbie, it is interesting to know what IDE's ("GUIs/editors") others use for Python coding.

If you can just give the name (e.g. Textpad, Eclipse ..) that will be enough. If it is already mentioned, you can just vote for it.

But if you can also give some more comparative information, that will be much appreciated.

Thanks.


Update: Results so far

  1. PyDev with Eclipse (CP, F, AC, PD, EM, SI, MLS, UML, SC, UT, LN, CF, BM)
  2. Komodo (CP, C/F, MLS, PD, AC, SC)
  3. Emacs (CP, F, AC, MLS, PD, EM, SC, SI, BM, LN, CF, CT, UT, UML)
  4. Vim (CP, F, AC, MLS, SI, BM, LN, CF )
  5. TextMate (Mac, CT, CF, MLS, SI, BM, LN)
  6. GEdit (Linux, AC)
  7. Idle (CP, F, AC)
  8. PIDA (Linux, CP, F, AC, MLS, SI, BM, LN, CF)(VIM Based)
  9. NotePad++ (Windows)
  10. BlueFish (Linux)
  11. JEdit (CP, F, BM, LN, CF, MLS)
  12. E-Texteditor (TextMate Clone for Windows)
  13. WingIde (CP, C, AC, MLS (support for C), PD, EM, SC, SI, BM, LN, CF, CT, UT)
  14. Eric Ide (CP, F, AC, PD, EM, SI, LN, CF, UT)
  15. Pyscripter (Windows, F, AC, PD, EM, SI, LN, CT, UT)
  16. ConTEXT (Windows, C)
  17. SPE (F, AC, UML)
  18. SciTE (CP, F, MLS, EM, BM, LN, CF, CT, SH)
  19. Zeus (W, C, BM, LN, CF, SI, SC, CT)
  20. NetBeans (CP, F, PD, UML, AC, MLS, SC, SI, BM, LN, CF, CT, UT, RAD)
  21. DABO (CP)
  22. BlackAdder (C, CP, CF, SI)
  23. PythonWin (W, F, AC, PD, SI, BM, CF)
  24. Geany (CP, F, very limited AC, MLS, SI, BM, LN, CF)
  25. UliPad (CP, F)
  26. Boa Constructor (CP, F, AC, PD, EM, SI, BM, LN, UML, CF, CT)
  27. ScriptDev (W, C, AC, MLS, PD, EM, SI, BM, LN, CF, CT)
  28. Spider (CP, F, AC)


Acronyms used:

  • CP - Cross Platfom
  • C - Commercial
  • F - Free
  • AC - Automatic Code-completion
  • MLS - Multi-Language Support
  • PD - Integrated Python Debugging
  • EM - ErrorMarkup
  • SC - Source Control integration
  • SI - Smart Indent
  • BM - Bracket Matching
  • LN - Line Numbering
  • UML - UML editing / viewing
  • CF - Code Folding
  • CT - Code Templates
  • UT - Unit Testing
  • UID - Gui Designer (e.g. QT, Eric, ..)
  • DB - integrated database support
  • RAD - Rapid app development support

I don't mention basics like Syntax highlighting as I expect these by default.


This is a just dry list reflecting your feedback and comments, I am not advocating any of these tools. I will keep updating this list as you keep posting your answers.

PS. Can you help me to add features of the above editors to the list (like autocomplete, debugging, or etc)?

flag
4  
VIM also has: AC (CTRL+N), MLS(a lot of languages supported), PD(plugin), EM(plugin), SC(plugin), SI(option to enable), BM(option to enable), LN(option to enable), CF(default), CT(snippetEMU) – igorgue Apr 1 at 20:09
show 11 more comments

74 Answers

1 2 3 next
vote up 0 vote down

I use vim to write very small Python scripts and ipython for interactive experiments and investigations of unknown APIs.

I also use pudb for debugging Python code.

However, my favourite Python IDE is leo. Being written in Python itself, leo has a huge potential. It is fully scriptable and has a lot of tasty features. leo is different from traditional text editors and IDEs, it might look unusual at a first glance. But after using it for a while (not only as programming IDE) most people realize that leo is unique, because it raises the data management process to a new level.

link|flag
vote up 0 vote down

IronPython Studio - Microsoft's 100% compatible Phyton implemention integrated with Visual Studio 2008 and it's free.

link|flag
show 2 more comments
vote up 0 vote down

I am using 3 different tools:

  • PyDev when developping regular Python code. The debugger is great.
  • Komodo Edit for web apps with Django. I like the HTML, CSS, Js editor.
  • SciTE for single file. It is lightweight.
link|flag
vote up 0 vote down

Eclipse with PyDev

link|flag
vote up 0 vote down

I use Editpad Pro by JGSoft. What I like is that you can set up keyboard short-cuts to run commands.

I've got shortcuts to launch the selected file (with 2.5 and one with 2.6), run the selected file through PyLint, and launch Winpdb on the selected file.

It's really just an awesome text editor, but it works quite well for python development.

link|flag
vote up 0 vote down

Pydev with Eclipse (with the VI plugin!) best of both worlds

link|flag
vote up 0 vote down

I usually use good ol' gvim.

link|flag
vote up 1 vote down

I use ScriptDev, you can find out and download it from http://www.scriptdevelop.com.
ScriptDev is a powerful script language IDE, it can support some very popular script language, for example, Python, Ruby, Lua, Tcl, Perl and so on.
Main features:

  • Edit, debug, run tcl, python, ruby, perl, lua scripts;
  • Script compiler / encryption and generate an executable file (the script for each different level of support);
  • Analysis of efficiency function as (the script for each different level of support);
  • Keyword help, through the F1 key or move the mouse to the keyword, access to detailed information to help;
  • Collected more script extension, to help document and presentation process, in addition to the commonly used tk, wx, pmw, there are images, multimedia, the interface, and many other variety of extensions;
  • A flexible, scalable architecture, the entire system can be flexible interpretation of the expansion of various components, interface components, tools, interface style;
  • Console support functions (currently only tcl console, telnet console, serial console available);
  • Packaging TclFace pages expansion of the package, can be the object-oriented tcl script development platform available in this script pages;
  • Interface support for skin, support Office2007, Visual Studio 2005, and other interface style.
link|flag
show 3 more comments
vote up 1 vote down

I would like to update the entry about SciTE: It is more like: CP, F, MLS, EM, BM, LN, CF, CT. Not to mention that it is lightning fast and quite scriptable compared to most alternatives.

link|flag
show 1 more comment
vote up 0 vote down

No one has mentioned XCode? It's great.

link|flag
show 1 more comment
vote up 1 vote down

I prefer PyDev (it's now free with all extensions, since it was acquired by Aptana). It has all features for modern Python programming and all the additional features coming with the Eclipse platform. It works on Linux and Windows. So you can easily have the same IDE on your preferred OS. So my Nr. 1.

A strong competitor for Pydev is Netbeans with the Python plug-in. But currently it's more for early adopters. I filled some bug reports about problems with the code assist and the debugging. But I see much potential that Netbeans can be in the future the Python IDE.

There are some text editors like Gedit, Vim, Emacs. For quick editing I like Gedit but it is not an IDE and I would never use it for large work or bigger projects.

I also tried some commercial IDEs like Komodo. But IMHO it's not the worst waste of money if I compare them with Pydev or Netbeans.

link|flag
vote up 0 vote down

NetBeans has also:

UT LN Some CT

:)

link|flag
show 1 more comment
vote up 0 vote down

I prefer Boa Constructor; which you do not have listed yet. Is it because it is still Beta? Boa was made directly for Python & wxPython. wxPython GUI visual development support & auto complete. The debugging tools are a little buggy but it seems to have all the features once you figure out how to use it.

CP, F, AC, PD, EM, SI, BM, LN, UML, CF, CT. It also has some other cool features like TODO list & show WhiteSpace.

link|flag
show 2 more comments
vote up 0 vote down

When I started programming Python professionally I tried out most of the recommended IDE's. I wasn't very happy with either so I continued looking. In the meantime I used emacs to actually get some work done and now I'm not looking for an IDE any more.

Emacs with some extra tools such as python-mode, nosetests etc is great. It maximizes coding time and minimizes IDE issues. The only thing I miss is project wide find and query-replace.

link|flag
vote up 0 vote down

I am using the PyDev plugin for Eclipse and it's working great.

link|flag
vote up 0 vote down

I sometimes use Davys IronPython Editor. Written in IronPython, simple interface. Low barriers to to bash out a few scripts when in a hurry. No real IDE features per se. Find it here: http://code.google.com/p/davysironpythoneditor/

link|flag
vote up 0 vote down

IntelliJ IDEA with Python plugin in my opinion has better completion and refactoring than PyDev. I use it for django web development so some other features as smart html editor and robust JS refactoring also help very much.

link|flag
vote up 2 vote down

I really like using IntelliJ IDEA with Python plugin. Sometimes I need to cheat and look at the code of the library I'm using.

link|flag
show 1 more comment
vote up 0 vote down

I've given Eclipse with PyDev another chance as a result of this question. After using Komodo as my IDE of choice in the past year working with Django code, I was left impressed with Eclipse' (Galileo) performance improvements on the mac.

I've made the switch and can now easily recommend Eclipse over other options.

For changes done through the console though, Vim is still my preferred choice.

link|flag
vote up 0 vote down

Editra

A relatively new editor written in python, with a pythonic API and features like vim emulation, ipython integration etc.

link|flag
vote up 1 vote down

Some updates for Komodo: +EM (if you mean underline squigglies for syntax errors) +SI +BM (there is subtle highlighting of the matching bracket when cursor is on a bracket, plus keybindings to jump between them) +LN +CF +CT (Komodo calls them "snippets") +UT (in the commercial version, Komodo IDE, only)

link|flag
vote up 0 vote down

NetBeans 6.7. I used to use Emacs, but the combination of decent (and improving) python support combined with excellent html/css/javascript support won me over.

link|flag
vote up 1 vote down

Last time I tried Netbeans for python, it was brand new (well, beta I suppose) and did everything Eclipse + PyDev did. Overall, I thought it was nicer, except for a small issue with rendering lines so underscores were cut off. I believe this is to be fixed in the next version, which is due out VERY shortly. You can download builds of the next version now, but they don't yet have the plugins for python available. Many plugins aren't available for it yet though, so I don't foresee a problem there.

link|flag
vote up 0 vote down

From my personal experience if you have to chose between aptna (Eclipse) and Komodo then prefer komodo. It's a lightweight IDE.

link|flag
vote up 0 vote down

+1 for WingIDE. Code Intelligence, Debugger, Support Python3.x (Only WindIDE 3.2 Beta, beta2 released recently).

link|flag
vote up 2 vote down

I would say that the best IDE for Python would be Wing IDE. Though it's a commercial application, it's quite powerful and it does justice to Python language.

Second IDE I would opt for is PyScripter, it is very simple but powerful and it gets the job done with no hassles. Moreover, it's free.

Third IDE I would opt for is Eric IDE, especially for developing PyQt Applications.

Also, I am on the lookout for Netbean's Python support, so far, they have only released a Early Release version. Lets see how the final version comes out.

link|flag
vote up 1 vote down

I usually just use Notepad++:

  • Free
  • (User-Extendable) Multiple Language Support
  • Line Numbering
  • Code Folding
  • Windows Only (Unfortunately)
  • Many other extensions and features.

I normally write fairly simple scripts, and don't need a full-scale IDE. However, I am looking at IronPython.

link|flag
vote up 0 vote down

Vim has CP, F, AC, MLS, SI, BM, LN, CF.

Other than that, it works with or without a GUI, and starts in a splitsecond:

$ time vim -c :q

real 0m0.139s user 0m0.092s sys 0m0.028s

Autocompletion is called Omnicompletion in Vim, but other than that, it's the same.

PIDA integrates Vim and therefore has nearly everything Vim has, but some more features. On the downside, it doesnt start so fast and it needs a GUI.

link|flag
show 1 more comment
vote up 0 vote down

I personally have fell in love with vim. You can make it do pretty much whatever you want via your .vimrc file (i.e. indentation, code completion, debugging, compiling, folding, tag/tree navigation etc.etc). It works on *nix and Windows systems. And of course it's FREE!!!

link|flag
vote up 3 vote down

Up until a few months ago I was a long time user of SciTE (SCIntilla based Text Editor) but recently I've switched to using Geany, another lightweight open source Scintilla based text editor written in C. It's a lot like SciTE but better in a lot of aspects.

The only things I changed to make me feel more at home was the color schema (to match SciTE's) and disabling all the widgets I don't need (toolbar etc.).

A screenshot of my Geany instance

Some of the interesting features of Geany (some also apply to SciTE):

  • Folding
  • Markers (easily switch between sections of a file)
  • Simple session restore (project based files)
  • Snippets (similar to SciTE's abbreviations)
  • The ability to reorganize editor tabs

It has also recently acquired a very rudimentary split window plugin (works OK for viewing but lacks full editing support, e.g. proper undo), which is one the useful features I think about from the short time I used GVim.

There is still room left for improvement:

  • Technically it has auto-completion but especially with regards to Python support it still has a long way to go before I'd consider it usable. Apart from the fact that it mostly just does static auto-completion on the basis of a pre-generated file named python.tags, the biggest limitation for me personally is that it doesn't auto-complete local variables or words. Pydev's auto-completion support, though also limited, is obviously a lot better.

Geany (CP, F, AC*, MLS, SI, BM, LN, CF, CT)

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.