vote up 47 vote down star
19

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

prev 1 2
vote up 0 vote down

TextMate is an excellent editor that has a bundle (it's version of plugins) for python development which can be found here in their svn repository. A tutorial on how to add these plugins can be found here.

On a side note there are a couple of really nice Django plugins for TextMate as well.

link|flag
vote up 5 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 1 vote down

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

link|flag
vote up 0 vote down

I've wrote a very detailed blog on how to use vim and python together. This includes code completion, debugging, and context sensitive help.

You can get it here: http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/

Outside of vim, there are other IDE's you can use:

All 3 of those are cross platform and provide debugging and code completion.

Here is a full wiki on IDE's and Python: http://wiki.python.org/moin/IntegratedDevelopmentEnvironments

link|flag
vote up 6 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 0 vote down

I recommend IPython as well. Besides the availability of tab-completion, IPython also supports custom "magic" keywords. My favorite is "%prun" which automatically profiles any method passed. Another benefit is pylab support. Much of my job surrounds the ability to plot data. Starting IPython with pylab turns the interpreter into the Python version of MatLab.

link|flag
vote up 0 vote down

There is a plugin available at linil for python code completion using Gedit.

Enjoy it.

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
vote up 0 vote down

Editra has auto-complete for Python. It is a nice little editor (incidentally it's written in wxPython)

http://editra.org/

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 0 vote down

GEdit should do it for youand it makes the plugin creation process very easy and understandable.

link|flag
vote up 0 vote down

There is a plugin for python code completion in GEdit available at:

http://linil.wordpress.com/2008/05/31/using-gedit-to-auto-complete-python-code/

link|flag
vote up 0 vote down

+1 for Wing Professional IDE.

The "Go To Definition" and "Source Assistant" can really go a long way to assist in your better python learning.

It has Vi and Emacs Emulation too, if U need either of them. Only the UI is bad, if on Windows (as it is based on GTK), It rocks on ubuntu.

If you are using any text editor, (Scite is my choice) then U'd do well by using ipyton console. (U can do a easy_install of ipython, if easy_install is installed)

With python itself providing debug options, and ipython and bash shell offering good auto-complete options, it is not really a that bad option to do away with any IDE. But if you still want an IDE (as I want), Wing Professional is the best one out there.

I have also tried SPE, PyDev and am not impressed enough to consider them; but indeed some features of PyDev like verifying whether a variable is used or not and auto-setting of different modes- Debug, PyDev, Java Browsing when U run and application is available in PyDev alone.

If U only need a good Syntax highlighting SciTE (on windows, SciTE based Notepad++) is a good option. If U need "project" option and auto-complete with Syntax highlighting, Komodo Edit is the best option. It also supports many other languages. If you want everything but the space shuttle (minus some special features of PyDev), Wing Professional is the best IDE currently available.

Most important thing is "Choose one and go with it"

link|flag
vote up 0 vote down

YES

Komodo Edit (Win, Linux, Solaris, OSX)

PythonWin (Win)

SPE (Stani's Python Editor)

Wingware's Wing IDE

link|flag
vote up 0 vote down

Link to NetBeans support. It is early access, but NetBeans has a good track record on their beta software.

link|flag
vote up 0 vote down

For my Python scripting I use emacs + ropemacs (which requires Pymacs) + auto-complete.el + yasnippet along with icicles for minibuffer completion. auto-complete has a bug with ropemacs that stops you from opening a project when using "." for autocompletion, but hopefully this will be fixed soon. In the meantime you can use M-x rope-open-project (which is C-x p o).

link|flag
vote up 0 vote down

Ulipad is pretty good.

link|flag
vote up 0 vote down

For Vim, Pydiction seems to be the only way to go. It can Tab-complete any python module (both system and 3rd party) as well as python keywrods, plus you don't need to have vim support compiled into Vim to use it. http://www.vim.org/scripts/script.php?script_id=850

link|flag
vote up 0 vote down

NetBeans supports it. Check the project here.

link|flag
vote up 0 vote down

OS X and no one have suggested XCode? XCode is fantastic on the Mac, got used to it when I started with Objective-C. It's a great tool, works great with Python and especially if you're writing Mac OS X software in Cocoa - where PyObjC provides the bindings. This would be my first choice when working in OS X.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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