-3

Subj. I seeking IDE with following features:

  • Support for Python standart library(at least most of it)
  • Support for files and importing modules from files
  • Access to network
  • Lightweight & fast
user1540982
  • 71
  • 1
  • 8

9 Answers9

4

If you want to use it online you can try

http://ideone.com/

There is python online IDE used by udacity, maybe worth to check it too

tomasz74
  • 16,031
  • 10
  • 37
  • 51
1

I used Wingware when I was developing Python for Google App Engine several years ago:

http://wingware.com/

Philip Tenn
  • 6,003
  • 8
  • 48
  • 85
1

I use Aptana, it is based on Eclipse, but comes out of the box with pydev for Python integration, and is good if you want to develop Django/GAE applications

Ctrlspc
  • 1,596
  • 1
  • 15
  • 22
1

ninja ide is lightweight and fast and does all that... and its free

(but Eclipse+PyDev wins hands down for sheer awesomeness and power, but loses on lightweight and fast..)

Joran Beasley
  • 110,522
  • 12
  • 160
  • 179
1

I used to use Cloud9 but decided desktop IDEs are more convenient

1

I understand you are looking for something along the lines of PythonAnywhere.

mbaytas
  • 2,676
  • 7
  • 26
  • 37
0

Install Eclipse
Install PyDev http://pydev.org/
Enjoy!

1054211
  • 442
  • 2
  • 6
0

IDLE that ships with Python usually can do it for my use cases. When you first open it you get the repl, but File > New Window will give you a file to edit. Save that file as a .py file and f5 to run.

I think it addresses your lightweight and fast requirement.

Chris Everitt
  • 166
  • 2
  • 9
  • does idle fix inconsistent use of tabs/spaces? thats one of the most useful features in a python ide imho ... – Joran Beasley Sep 12 '12 at 17:15
  • 1
    It uses 4 spaces instead of tabs (when you type a tab), and does a pretty good job indenting. So to answer you I would say it forces (transparently to the user) consistent use of tab/spaces. It will not fix an indent of 5 spaces when you've been using 4 for example. – Chris Everitt Sep 17 '12 at 17:06
0

JetBrains makes the best IDEs on the market, hands down. Check out PyCharm.

duffymo
  • 305,152
  • 44
  • 369
  • 561
  • I really like pycharm for django projects... (Is there a way to get linkbacks to where something was defined like in eclipse?(eg hover over class name and be able to link to the class declaration) – Joran Beasley Sep 17 '12 at 17:10
  • I just type "shift N" and enter the class name. PyCharm will bring me right to the source. – duffymo Sep 17 '12 at 17:23