Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Mar 21st, 2007, 7:11 AM   #11
pegasus001
Hobbyist Programmer
 
pegasus001's Avatar
 
Join Date: Nov 2006
Location: 163H
Posts: 213
Rep Power: 2 pegasus001 is on a distinguished road
Quote:
Originally Posted by kurt
I'm currently on Eclipse -- pretty OK, the only issue I have is that I can't manage to set the auto complete right. It can check for all fields and methods in that file, but not for those that I import.
Quote:
Originally Posted by kurt
....I'll probably used it to replace my Eclipsse.
However, i still can't get the intellisense thing to work across files/modules that I import. I can only get the list of attributes from the file i'm typing on....
I don`t get it. Why change?

All the time that you spent learning and tweaking the ide about how it worked you could have used it studying the API.
__________________
You never test the depth of a river with both feet.
The believer is happy. The doubter is wise.
Free speech carries with it some freedom to listen.
The next generation will always surpass the previous one. It`s one of the never ending cycles of life.
pegasus001 is offline   Reply With Quote
Old Mar 21st, 2007, 2:39 PM   #12
Sane
Programming Guru
 
Sane's Avatar
 
Join Date: Apr 2005
Location: Waterloo, Ontario
Posts: 1,868
Rep Power: 5 Sane will become famous soon enough
Send a message via MSN to Sane
Quote:
Originally Posted by kurt View Post
Hm... I'm actually refering to the ..erm.."intellisense" type of thing, where I can get the whole list of methods.

It saves me time in a sense that I do not need to open up the file, or refer to the API. I don't/can't memorize each method in a project that is so huge.
I keep "Python Command Line" open on the side.

>>> import os
>>> dir(os) 
[a list of all the methods of os here]
>>> help(os.system)
[description of function, list of parameters, and any additional notes that were left]

It may not be as fast, but it's perhaps even more useful.
Sane is online now   Reply With Quote
Old Mar 21st, 2007, 3:41 PM   #13
ZenMasterJG
Hobbyist Programmer
 
ZenMasterJG's Avatar
 
Join Date: Nov 2004
Location: Boston, MA
Posts: 148
Rep Power: 4 ZenMasterJG is on a distinguished road
Send a message via AIM to ZenMasterJG
Quote:
Originally Posted by kurt View Post
ZenMasterJG, where can I get SPE? I google-ed it, but can't find it.
http://pythonide.blogspot.com/ is the main site, download links are on there somewhere.
Downloads are also available from Sourceforge:
http://sourceforge.net/projects/spe/

Quote:
Originally Posted by Sane View Post
It may not be as fast, but it's perhaps even more useful.
Thats one of the reasons I like SPE, it keeps an interactive session open in a pane of the IDE, which is also handy for testing code snippets before you slap 'em in place.
ZenMasterJG is offline   Reply With Quote
Old Mar 22nd, 2007, 3:11 AM   #14
kurt
Programmer
 
Join Date: Oct 2005
Posts: 68
Rep Power: 3 kurt is on a distinguished road
Quote:
Originally Posted by Sane View Post
I keep "Python Command Line" open on the side.

>>> import os
>>> dir(os) 
[a list of all the methods of os here]
>>> help(os.system)
[description of function, list of parameters, and any additional notes that were left]
It may not be as fast, but it's perhaps even more useful.
Hm...this is useful for Python's own set of commands, but not for the project i'm working on, which around 10-20 people are working on it. Not to mention no documentation for it, but that's a different issue.
kurt is offline   Reply With Quote
Old Mar 22nd, 2007, 3:12 AM   #15
kurt
Programmer
 
Join Date: Oct 2005
Posts: 68
Rep Power: 3 kurt is on a distinguished road
Quote:
Originally Posted by ZenMasterJG View Post
http://pythonide.blogspot.com/ is the main site, download links are on there somewhere.
Downloads are also available from Sourceforge:
http://sourceforge.net/projects/spe/


Thats one of the reasons I like SPE, it keeps an interactive session open in a pane of the IDE, which is also handy for testing code snippets before you slap 'em in place.
Cool, i'll check it out. thanks!
kurt is offline   Reply With Quote
Old Mar 22nd, 2007, 6:47 AM   #16
pegasus001
Hobbyist Programmer
 
pegasus001's Avatar
 
Join Date: Nov 2006
Location: 163H
Posts: 213
Rep Power: 2 pegasus001 is on a distinguished road
Question

Quote:
Originally Posted by crawforddavid2006 View Post
ROFLMFAO.... only DaWei would state such a true fact
I was wondering do you use intellisense or you aren`t sure yet.
__________________
You never test the depth of a river with both feet.
The believer is happy. The doubter is wise.
Free speech carries with it some freedom to listen.
The next generation will always surpass the previous one. It`s one of the never ending cycles of life.
pegasus001 is offline   Reply With Quote
Old Jul 2nd, 2007, 7:56 PM   #17
nytrokiss
Newbie
 
Join Date: Oct 2006
Posts: 23
Rep Power: 0 nytrokiss is on a distinguished road
If you have the money i would recommend wing IDE i love it!
nytrokiss is offline   Reply With Quote
Old Jul 2nd, 2007, 8:14 PM   #18
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
Intellisense also applies to how much later a response to a post might be helpful....
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Old Jul 4th, 2007, 7:28 PM   #19
Dietrich
Professional Programmer
 
Dietrich's Avatar
 
Join Date: Feb 2005
Posts: 434
Rep Power: 4 Dietrich is on a distinguished road
Talking

I find the DrPython IDE very stable, and you can download a code completion plugin that offers a dropdown list of choices. For instance if you use 'import Tkinter as tk', the moment you type 'tk.' the list of choices comes up and you can double click to select a choice.

Pyscripter works well, but on occasion sinks.
__________________
I looked it up on the Intergnats!
Dietrich is offline   Reply With Quote
Old Jul 27th, 2007, 4:53 PM   #20
357mag
Hobbyist Programmer
 
Join Date: Mar 2005
Posts: 148
Rep Power: 4 357mag is on a distinguished road
I've tried Komodo and loved it. You can choose to run your program in a separate console window if you want, or you can choose to run it in the same window at the bottom of the IDE, similar to most Java IDE's. But it costs about $295.00 to purchase.

Last edited by 357mag; Jul 27th, 2007 at 4:53 PM. Reason: mistake
357mag is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[tutorial] Python for programming beginners coldDeath Python 30 Dec 14th, 2005 11:35 AM
Advanced Python Tricks Arevos Python 19 Sep 24th, 2005 7:39 AM
Python - A Programmers Introduction coldDeath Python 17 Aug 19th, 2005 12:41 PM
IDEs for Python Dietrich Python 12 May 21st, 2005 11:21 PM
is python good for making a calculator for octal numbers saragonhat Python 10 Apr 2nd, 2005 11:09 AM




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 10:57 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC