vote up 47 vote down star
20

I am quite fond of the Intellisense code completion baked into Microsoft Visual Studio. I find that I only type 2 to 4 characters of any given keyword which drasticaly speeds up my coding. Now that I have been spending time writing some Python code I find myself reaching for ctrl+space.

Are there any IDEs that support code completion in Python? I do my python development on a Mac so an OS x tool would be preferable. It seems like the doc string property of Python methods is a perfect match for inline API discovery.

flag
show 1 more comment

50 Answers

1 2 next
vote up 33 vote down

Actually, PyDev plugin for Eclipse has a full support for code completion (try PyDev Extensions too). You can easily try it here. Another editor worth mentioning is WingIDE, which is really powerful. For more on Python editors check this page.

I use Aquamacs with ropemacs on my Mac, but that's an ultra geeky setup :)

link|flag
vote up 21 vote down

The free Komodo Edit app from ActiveState includes code completion.

It's provided via XML files that detail the API(s) you are using.

It is cross platform and thus works on Windows, Linux and Mac.

link|flag
vote up 18 vote down

Vim's OmniComplete has the same fun intellitext-style popups and everything for auto completion.

http://vimdoc.sourceforge.net/htmldoc/version7.html#new-omni-completion

link|flag
vote up 11 vote down

It's also possible to turn VIM into a respectable Python IDE:

http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/

EDIT: The link seems to have changed to (thanks hasen j):

http://www.sontek.net/post/Python-with-a-modular-IDE-%28Vim%29.aspx

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

IPython is an almost complete interactive python shell with an integrated help system and tab completion for every live object and class.

So you just need an IDE that integrates well with IPython, such as PIDA or Emacs.

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

Komodo Edit from the Open Komodo project has the best auto-completion and code/text introspection I've ever seen on an editor - for python as well as a number of languages. It reads from your source, rather than requiring any particular configuration. (It even manages to be able to edit Bash, SQL and structured text files intelligently.) You can also attach libraries/modules to it, so you have documented access to them.

I would highly recommend the free Komodo edit.

link|flag
vote up 5 vote down

I have tried a lot of python IDE's and the best one I like is PyScripter. Its easy to use and has nice code completion.

link|flag
vote up 4 vote down

I've found that Eclipse/PyDev's autocomplete feature more powerful than Komodo Edit's, but that's to be expected. Although I'm a big autocomplete fan, I still find myself using Komodo more because it does a much better job of staying out of your way when you just want to write a script.

link|flag
vote up 4 vote down

I'm surprised no one has mentioned SPE (pythonide.blogspot.com). It has code completion not only with the python libraries but the code you write as well, it's not import only it will complete code in the same file as well. It also has a whole bunch of features like UML diagram tool, and pydoc generation.

link|flag
show 3 more comments
vote up 4 vote down

Eclipse (with pyDev) is great. Personally I find it a bit overkill for mundane tasks. The more features, the more they distract you from getting things done. Vim is my standard choice, it's powerful but the interface don't get in your way (check :help python in Vim). There's also a nice Tutorial on using Python with Vim.

Both are Open Source and got great Communities to get help. But on Mac I would strongly suggest to check out TextMate, it's awesome (and got nice support for Python and Django). I use it at work and absolutely love it, it's powerful but not bloated and let you focus an your work. TextMate is not Open Source though (if you care), and OS X only, so I stick to Linux and Vim at home.

Another slick and casual editor for Linux would be Scribes. For those on Linux who find an IDE too bloated but Vim too complex, check it out, it is very minimalistic but got some nice features gEdit, Kate, etc. miss.

link|flag
vote up 4 vote down

Hi; I've written PySmell, a library that provides auto-completion to Emacs, Vim and TextMate, by taking the TAGS approach - generate tags for your code and other projects, and complete based on those.

It completes import statetements, and has some rudimentary type inferencing. I'm about to release v0.7 which supports all that.

Grab it from: http://code.google.com/p/pysmell/

link|flag
vote up 3 vote down

To be really worthwhile the autocomple should read from your source, not just an API listing. It sounds like both Komodo and the Eclipse plugin do not support that. Is there any option that does?

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

I'm not sure how well this would transfer to a Mac, but adding auto completion is easy in linux.

In your .pystartup.py file, add the following lines.

import readline
readline.parse_and_bind("tab: complete")
del readline
link|flag
show 1 more comment
vote up 3 vote down

Emacs and vim both have autocomplete.

link|flag
vote up 2 vote down

I use TextMate on my Macintosh. With the Python/Django bundles it's very usable (and mac-like, which is important to me... emacs/aquamacs/xemacs make me context-switch from the rest of my applications).

link|flag
vote up 2 vote down

On Windows, PyScripter is a pretty good free and open-source IDE that provides code completion (as well as debugging and other features). It doesn't really parse doc strings or other annotations, so it has limits to the completions that can be offered.

WingIDE is a cross-platform (Windows, Linux, Mac) commercial IDE. It's pretty full featured and you can provide annotations in comments as hints to the intellisense. There's a free version of Wing, but I don't know if that contains that feature. A trial version is available for all the versions.

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

There is a full Komodo IDE from ActiveState which will allow you to debug and step through Python code as well as do the code completion. I use it at work for Perl and PHP development (it covers Perl, Python, Ruby, TCL and PHP) and it works really well. I use it on a PC, but I know it works for Macs as well. Of course, this one you have to pay for over the free Komodo Edit, but you do get a lot for your money.

link|flag
vote up 1 vote down

Eclipse will do it, but only for imported objects. Sadly not for objects in your own source.

link|flag
vote up 1 vote down

@Leon Yes, Komodo Edit is available for the Mac as well as for Windows. In fact, I use it on both platforms, and I'm extremely happy with it.

One thing to keep in mind: it's not a full blown IDE. It's more of a text editor with some project features and good syntax highlighting and code completion. If you're looking for something as beefy as Eclipse or Visual Studio, Komodo Edit may seem a little stripped down. On the other hand, Komodo is really, really easy to find your way around and doesn't have nearly the mental overhead of learning a new IDE like Eclipse.

I personally love Komodo Edit and recommend giving it a whirl.

Eric Sipple

edit: One other thing about Komodo Edit if you're used to Visual Studio (like I was when I started using it). Its code completion requires you hit Enter/Return to finish what you're writing, unlike Visual Studio. I find myself hitting the wrong key for the first couple of lines of code if I fire up Komodo after getting home from work.

link|flag
vote up 1 vote down

Here you can find a complete list of editors for Python:

http://wiki.python.org/moin/PythonEditors

For me, the best editor is PyDev in Eclipse. Especially the debugging is nice.

link|flag
vote up 1 vote down

Boa Constructor is free, OpenSource and developed in Python + wxPython. It supports auto completion pressing Ctrl+Space, works OK for me.

link|flag
vote up 1 vote down

Not an OSX editor, but for those working with IronPython on Windows, there is a community maintained edition of Visual Studio available configured for working with IronPython and providing full Windows Forms and WPF designer support.

It can be accessed from its home on CodePlex.

link|flag
vote up 1 vote down

eric4 does the job very well for me: http://die-offenbachs.de/eric/index.html

link|flag
vote up 1 vote down

pydev plugin for Eclipse is the best option for now !! Also since it is an open source project you can extend it if you didnt like any feature

link|flag
vote up 1 vote down

Actually PyDev is worth while and I've found it to be the best of all the editors for Python. It seems though, that Pydev extensions (which are nonfree) would make the perfect couple. Too bad that these aren't free (autoimport and other stuff from PyDev extensions are really nice).

Two other editors I've been using with python so far are Eric and UliPad(mostly on slower computers). Vim is also great, but I couldn't get it to autocomplete on Windows somehow :-(

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

WingIDE (www.wingware.com) is by far superior in terms of code completion and being "Python-aware" in general to any Python editor or IDE out there (I've looked at PyDev, Komodo, and others mentioned here). WingIDE is not free, but being under $200 for a full-blown single-user version makes it easy to talk even the cheapest manager into the purchase. Take it for a free trial first and experiment with all the options. I've used it for about 3 years now and would not think of writing/debugging Python code without it.

link|flag
vote up 1 vote down

The best editor for the Mac IMO is TextMate. It's got a python bundle that will do what you're looking for. It's got bundles for a zillion other languages as well.

Well worth the price.

link|flag
vote up 1 vote down

I have heard (disclaimer: I have no personal experience with it) that the Python editing for NetBeans, done to support Jython, has nice code completion and other features.

Here's a link to a relevant post on multi-lingual NetBeans by Tor Norbye, a NetBeans wizard.

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

Try Eric IDE I quite enjoyed using it.. am back to vim though.

link|flag
vote up 1 vote down

The rlcompleter module deserves special mention here. It's not specific to an IDE, but it does provide tab code completion in Python's interactive mode...very handy.

http://docs.python.org/lib/module-rlcompleter.html

link|flag
1 2 next

Your Answer

Get an OpenID
or

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