vote up 169 vote down star
171

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)
  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

71 Answers

prev 1 2 3
vote up 1 vote down

Usually any decent text editor will get the job done when editing Python files. I used Geany quite regularly since it has highlighting, indenting, and can run the script directly from the editor. It also includes a class browser feature which can extract methods and variables from a source file into a tree structure.

It is also extremely lightweight so it's not a big deal to start up for a quick edit.

link|flag
vote up 4 vote down

This similar question also has some suggestions.

link|flag
vote up 22 vote down

See appropriate page in Python wiki and choose the one that fits your taste (have you ever heard of Emacs vs. Vim flame wars? ;)).

Personally, I'm using Textmate on Mac, Komodo Edit on Windows and PIDA on linux.

link|flag
vote up 1 vote down

It would help if you provided what platform you are working on. For Linux (and probably other platforms) there is an Eclipse plugin for Python. I believe there is also a plugin for KDevelop.

I've heard a lot of good things about Code::Blocks, and it is multiple platform (win, mac, lin). Maybe give this a try: http://www.codeblocks.org/

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

I use Eclipse plus the PyDev plugin. PyDev has support for PyLint, which is another free download. With those three installed, you have an environment that can parse your python and spot errors (almost all errors, i.e bad vars, bad types, bad includes) as you type.

You can also debug from within the IDE, including single stepping. Selecting text in the IDE will evaluate it in the current environment (like visual studio's tooltips). It can launch and debug several processes from the one debugger and handles Twisted pretty well. I currently use it for working with Twisted and Django.

If you go with Eclipse, you should consider these plugins

Also, outside of Eclipse, I suggest you get IPython for your command line debugging pleasure. I prefer it over the standard command line shell and IDLE (The GUI shell).

link|flag
2  
+1 for PyDev, and I would actually recommend that you shell out for the PyDev Extensions, it makes the environment much smarter fabioz.com/pydev – Henrik Gustafsson Feb 5 at 18:09
10  
As of Sep 3 2009, PyDev Extensions is open source, and included free with PyDev – itsadok Sep 6 at 6:27
show 7 more comments
vote up 4 vote down

The editor that comes with the python distribution (Idle) is very good for first time Python programmers.

link|flag
vote up 49 vote down

Vim - For me it's best choice, regardless of technology I'm using at the moment. It's not so hard to learn as it looks and during the work you are becoming more and more productive.

link|flag
8  
I second vim, not only because of its power, but also because it pays off to learn it since you can reuse this knowledge a lot. Vim is omnipresent across platforms and is a great option for terminal editing, shining especially through telnet/ssh. – nachik Feb 16 at 10:39
4  
vim rocks[ESC]100i![ESC]111 – pi Apr 7 at 7:34
5  
And you can extend Vim with plugins written in Python. – rq May 10 at 17:49
vote up 4 vote down

Big fan of Active States's Komodo IDE, which has excellent multi-language support, debugging, code-completion, source control integration etc. There's also its free little brother Komodo Edit available which is more than capable for many day-to-day tasks.

Both are cross-platform (Windows, Mac and *nix)

link|flag
vote up 4 vote down

Eclipse with PyDev is pretty good these days.

I did dabble a little with SPE (http://pythonide.blogspot.com/) and Eric (http://www.die-offenbachs.de/eric/index.html) but found them a bit slow.

link|flag
vote up 11 vote down

There is Komodo from ActiveState which is commercial, there is also Komodo Edit which is free.

link|flag
vote up 16 vote down

I use a Mac and prefer Textmate but there are other choices. For the PC I have heard only good things about Notepad++.

link|flag
show 1 more comment
prev 1 2 3

Your Answer

Get an OpenID
or

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