vote up 5 vote down star
3

Ok newbee question: Is there an equivalent to 'intellisense' for Python?

Perhaps i shouldn't admit it but I find having intellisense really speeds up the 'discovery phase' of learning a new language. For instance switching from VB.net to C# was a breeze due to snippets and intellisense helping me along.

flag

49% accept rate
Thanks for all of the great suggestions! – Harry May 25 at 2:12
Love the random close vote - what's with that? – Harry May 25 at 3:07
In some way duplicate : stackoverflow.com/questions/81584/… – Tom Leys May 25 at 3:18
Thanks for the link. Not a duplicate question in my opinion. I can't find the answer i'm looking for in their. – Harry May 25 at 3:40
1  
What you want is "Automatic code completion" - The editors that support are listed with AC next to their name by the original poster in stackoverflow.com/questions/81584/… – Tom Leys May 25 at 22:28
show 1 more comment

9 Answers

vote up 5 vote down

This blog entry explains setting Vim up as a Python IDE, he covers Intellisense-like functionality:

Python Intellsense

This is standard in Vim 7. There are a number of other very useful plugins for python development in Vim, such as Pyflakes which checks code on the fly and Python_fn.vim which provides functionality for manipulating python indentation & code blocks.

link|flag
vote up 4 vote down

The PyDev environment for Eclipse has intellisense-like functionality for Python. Keeping an interactive console open, along with the help(item) function is very helpful.

link|flag
vote up 4 vote down

The dynamic nature of the language tends to make autocomplete type analysis difficult, so the quality of the various completion facilities menitoned above varies wildly.

While it's not exactly what you asked for, the ipython shell is very good for exploratory work. When I'm working with a new module, I tend to pull it into ipython and poke at it. Having tried most of the solutions mentioned above (though it's been years since Wing), ipython's completion facilities are consistently more reliable. The two main tools for exploration are tab complete and appending a question mark to the module/function name to get the help text, e.g.:

In [1]: import sqlalchemy

In [2]: sqlalchemy.s #tab completion
sqlalchemy.schema    sqlalchemy.select    sqlalchemy.sql       sqlalchemy.subquery

In [2]: sqlalchemy.select? #Shows docstring

In [3]: sqlalchemy.select?? #Shows method source

In [4]: edit sqlalchemy.select #opens the source in an editor
link|flag
vote up 3 vote down

I'd recommend Komodo Edit. However, I should point something out: you're not going to get anything quite as good as what you're used to with Visual Studio's C# intellisense. Python's dynamic nature can make it difficult to do these kinds of features.

link|flag
vote up 3 vote down

The IDLE editor that comes with Python has an intellisense feature that auto-discovers imported modules, functions, classes and attributes.

link|flag
vote up 2 vote down

ctags + vim works ok, too, although it is not as powerful as intellisense. Using this with ipython, you can get online help, automatic name completion, etc... But that's obviously command-line oriented.

Eclipse + pydev can do it as well, but I have no experience with it: http://pydev.sourceforge.net/

link|flag
vote up 2 vote down

I strongly recommend PyDev. In Pydev you can put the module you are using in the Forced Buildins, mostly the code-completion will work better than in other IDEs like KOMODO EDIT.

Also I think IPython is very helpful. Since it is 'run-time' in IPython, the code-completion in IPython won't miss anything.

link|flag
vote up 2 vote down

Well, I think the most dynamic way to learn Python is to use iPython.

You got autocompletion when using tab, dynamic behaviour because it's a shell and you can get the full documentation of any object / method typing :

object.method ?

When developping, I agree that PyDev is cool. But it's heavy, so while learning, a text editor + iPython is really nice.

link|flag
vote up 1 vote down

Wingware for example implements auto-completion, see http://wingware.com/doc/edit/auto-completion .

link|flag

Your Answer

Get an OpenID
or

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