473,666 Members | 2,107 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Looking for an intellisense with good help IDE for Python

Hi,

I would like an IDE that shows me all methods and functions I can call
on a particular data item. For instance, iter() can be called on any
sequence, but it is not a method.

Nonetheless, I would like for something to show me every thing that I
can call on a particular data item.

This includes % after a string.

I would also like browseable help with good examples on whatever
methods and functions and operators it pops up.

Thanks,
Terrence

Aug 8 '06 #1
8 2117
I dont know if it will meet all your needs but SPE (Stani's Python
Editor) is quite cool - has code completion.

http://pythonide.stani.be
metaperl wrote:
Hi,

I would like an IDE that shows me all methods and functions I can call
on a particular data item. For instance, iter() can be called on any
sequence, but it is not a method.

Nonetheless, I would like for something to show me every thing that I
can call on a particular data item.

This includes % after a string.

I would also like browseable help with good examples on whatever
methods and functions and operators it pops up.

Thanks,
Terrence
Aug 8 '06 #2
I can attest to PyDev being an excellent extension to Eclipse. But
Eclipse kind of requires a heavy machine to run, being a gigantic
Java program.

Michiel

Op 8-aug-2006, om 15:36 heeft Fabio Zadrozny het volgende geschreven:
Have you checked pydev: http://pydev.sf.net

Cheers,

Fabio
Aug 8 '06 #3
metaperl <metaperl <atgmail.comwri tes:
Hi,

I would like an IDE that shows me all methods and functions I can call
on a particular data item. For instance, iter() can be called on any
sequence, but it is not a method.

Nonetheless, I would like for something to show me every thing that I
can call on a particular data item.
Most built-in functions which can be called on objects simply call the objects'
respective __*__ method. But this isn't always true (as for iter()); it is an
interesting idea for code completion. I haven't seen any Python IDE do this, but
if you can convince me it's worth the effort, maybe that will change :)

As for other functions (not built-in), since there is no way in Python for a
function to declare a required type or interface for an argument, this seems
quite impossible.

Question: There are several built-in functions which can be called on any
object, such as str(), repr(), dir(), id() and type() - would you really want to
see all of those every time? I feel it would just clutter the completion list.

As an implementation issue, silly programmers overriding built-in functions by
accident would have to be taken into account...
This includes % after a string.
But only if there are conversion specifiers in the string, right? ;) Seriously
though, isn't it much, much simpler to just hit shift+5? I feel this would
needlessly clutter the list of completions. Why do you want this?
I would also like browseable help with good examples on whatever
methods and functions and operators it pops up.
Such help can easily be found in the Pydocs under "Built-in Functions". Under
Windows, this is a .chm help file which is browseable. Also, many IDEs show
calltips for functions, showing the arguments and/or docstring.
Thanks,
Terrence
- Tal Einat
reduce(lambda m,x:[m[i]+s[-1] for i,s in enumerate(sorte d(m))],
[[chr(154-ord(c)) for c in '.&-&,l.Z95193+1 79-']]*18)[3]

Aug 8 '06 #4
Hello Terrence,
I would like an IDE that shows me all methods and functions I can call
on a particular data item. For instance, iter() can be called on any
sequence, but it is not a method.

Nonetheless, I would like for something to show me every thing that I
can call on a particular data item.

This includes % after a string.

I would also like browseable help with good examples on whatever
methods and functions and operators it pops up.
The IDLE that will come (soon) with Python 2.5 with have some
intellisense. Not all that you requested but some of it.

HTH,
Miki
http://pythonwise.blogspot.com/

Aug 8 '06 #5
You don't say what platform you are using.

The PythonWin IDE has really good code completion. Not all that you
mention, but certainly methods etc. If you are on nix, then Komodo has
it; not free, but only $30 for Komodo personal.

rd

Aug 8 '06 #6
The best code completion you can get for Python is delivered by WingIDE:

http://wingware.com/

I have seen, PyDev, Kommodo, Spe and when it comes to code completion for
Python than nothing beats WingIDE. Maybe anyone can proof the contrary.

WingIDE is not for free though (Personal: 35 USD upto Profession: 180 USD)
- you can download a fully fuctional version and prolong it a few times...
try it out, if you are willing to pay a few bucks.

Cheers,
Marco

Aug 9 '06 #7
Miki <miki.tebeka <atgmail.comwri tes:
The IDLE that will come (soon) with Python 2.5 with have some
intellisense. Not all that you requested but some of it.
On the same note, IDLE's completion module has received some serious upgrades
recently (such as dictionary key completion and case-insensitive completion),
but these haven't made it into the main Python trunk yet. I maintain a stable
version of IDLE with many new features, including the much-improved completion,
which can be found at:

http://www.mashebali.com/?Tal_Einat%27s_IDLE

Feel free to download, comment, and report bugs :)

- Tal
reduce(lambda m,x:[m[i]+s[-1] for i,s in enumerate(sorte d(m))],
[[chr(154-ord(c)) for c in '.&-&,l.Z95193+1 79-']]*18)[3]

Aug 9 '06 #8
I run PyDev and Eclipse on a 800mhz Celeron without any trouble. Just a
bit slow.

Michiel Sikma wrote:
I can attest to PyDev being an excellent extension to Eclipse. But
Eclipse kind of requires a heavy machine to run, being a gigantic
Java program.

Michiel

Op 8-aug-2006, om 15:36 heeft Fabio Zadrozny het volgende geschreven:
Have you checked pydev: http://pydev.sf.net

Cheers,

Fabio
Aug 10 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
2265
by: jodocus | last post by:
hi, I am new to python (but not to programming - have programmed in many other languages like C++/lisp/perl etc.) and I would like to buy a good book. The local bookstore has no books about Python, so I cannot look into a book and see whether I like it. That is why I turned to this newsgroup for advise. I would like a book with a very complete and correct description of the language and the built-in features, and things like how to...
7
2345
by: Andy Koch | last post by:
Hello. I am new to Python and for the most part new to programming. The best way to learn to write is to read, so I have been looking for a website that has the code of programs written in Python. If anyone knows of a good place to find something like this, I would be very grateful if you could respond. Thanks!
3
2378
by: Tomas | last post by:
Hi! I'm looking for a replacement for the standard interactive python shell. So far I've tried IPython and PyCrust. I liked both, but I'm not 100% happy with any of them. My main complaint about IPython is its missing support for multiline editing. To do multiline editing, it has to start an external editor, but then I lose all the nice features like autocompletion. PyCrust supports multiline editing, but the autocompletion is not as...
8
2398
by: andrew.queisser | last post by:
Yesterday I typed in some C++ code that called a function with two ints. Intellisense (auto-complete) helpfully told me that the first formal parameter was called "frontLight" and the second "ringLight". It occurred to me that I'm getting some semantic help here on top of the obvious type safety. It seems to me that the existance of this kind of support is tied to the static typing nature of C++. I've always been interested in the...
9
1934
by: news.microsoft.com | last post by:
Dear all, I have to do a source code editor to implement syntax hilighted with special colors , IntelliSense function. Could anybody give me some tips or links? Thanks,
11
2006
by: Tobias Lekman | last post by:
Hi, I was wondering whether the (compared to VB.NET) poor Intellisense will be upgraded in a service release, or do I have to wait for the next VS.NET? Is there an inherent reason for the lack of a speedy Intellisense engine in C#?? Regards, Tobias
2
14823
by: Don | last post by:
I'm having problems with intellisense, autocomplete, etc. suddenly not working in certain classes of a project I'm working on. All the options are set, and it all works fine for most classes, but for some it just suddenly stopped working. After a build it'll work maybe once or twice, then stop. I've tried repairing my installation of Visual Studio 2003 but that didn't help. Is Microsoft working on a fix for this, or is there something...
12
4829
by: Peteroid | last post by:
I was creating my application just fine for the last 3 weeks or so. Then, starting this morning, IntelliSense seems to be having problems. It goes into a locked 'Updating IntelliSense..." mode. When this happens its time to close VS C++.NET, which can only be done via the Windows Task Manager. I tried repairing C++. It did seem to help, but the problem is back a few hours later. I will try creating a new project, copy over source files,...
5
1353
by: dragonslayer008 | last post by:
I made a control library project using Visual Studio 2005 with C++/ CLI. I now have my code working and running, but none of the intellisense works. Is there a setting I need to turn on, or is the intellisense for C++/CLI not good?
0
8871
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8783
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8640
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7387
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6198
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5666
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4198
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4369
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2773
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.