Re: Looking for an intellisense with good help IDE for Python

2006-08-10 Thread kilnhead
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 he

Re: Looking for an intellisense with good help IDE for Python

2006-08-09 Thread taleinat
Miki gmail.com> writes: > 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 com

Re: Looking for an intellisense with good help IDE for Python

2006-08-09 Thread Marco Aschwanden
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

Re: Looking for an intellisense with good help IDE for Python

2006-08-08 Thread BartlebyScrivener
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 -- http://mail.python.org/mailman/listinfo/python-list

Re: Looking for an intellisense with good help IDE for Python

2006-08-08 Thread Miki
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 d

Re: Looking for an intellisense with good help IDE for Python

2006-08-08 Thread taleinat
metaperl gmail.com> writes: > 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

Re: Looking for an intellisense with good help IDE for Python

2006-08-08 Thread Michiel Sikma
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

Re: Looking for an intellisense with good help IDE for Python

2006-08-08 Thread Fabio Zadrozny
On 8 Aug 2006 00:36:30 -0700, metaperl <[EMAIL PROTECTED]> wrote: Hi,I would like an IDE that shows me all methods and functions I can callon a particular data item. For instance, iter() can be called on anysequence, but it is not a method.Nonetheless, I would like for something to show me every th

Re: Looking for an intellisense with good help IDE for Python

2006-08-08 Thread Chris Brat
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 call