Online IDE for Python

Question:

Is there any web-based IDE that I can use to run quick tests? There’re a dozen for PHP and some for even Java but I haven’t found yet that runs Python. If there’s an open-source IDE available that I can host and run myself, that’d be better.

Thanks

Asked By: eozzy

||

Answers:

You might want to give a try at:

Answered By: Gregory Pakosz

Through not specifically for python Codepad is good too.

Answered By: Prasoon Saurav

Codepad can compile code, if it’s what you’re looking for.

Answered By: mooper

http://shell.appspot.com/ The google AppEngine shell (not really an IDE though).

Answered By: jldupont

I’m pretty sure that IDE’s are the last kind of programs that will ever go web based, because a good IDE needs to be so extremely interactive if it wants to be good.

I really don’t see a reason for this and others seem to agree because there isn’t any.
And no, an interactive web shell or compiler has nothing to do with an IDE.

Answered By: Lothar

Mozilla Bespin is an interesting project (user guide).

It is a Mozilla labs open source project to build a browser-based IDE. You can host it yourself, see the Bespin developer guide.

I don’t think it is currently a full-fledged Python IDE, but I believe it could be made into one with a bit of effort. The Bespin server is written in Python.

Answered By: codeape

ideone.com is able to compile and run Python. There is also an integrated web editor – perfect for quick tests. It is not an open source but you can use Ideone API to build your service.

Answered By: kuszi

I’m trying out PythonAnywhere.com and it has in-browser support for both 3.2 and 2.7. It also lets you sync to dropbox and deploy right to the web.

Answered By: fionabunny

Codecademy has one at labs.codecademy.com. It has syntax highlighting and auto indent.

Answered By: Edward Yu

Repl.it has a python interpreter and terminal among others. It may not be a full-fledged IDE. I’m not sure how you define that.

Answered By: Calydon

Repl.it is an awesome project, the python engine is completely written in javascript, that means, all the code is executed on user’s side, rather than server. Also you can use it offline, once the engine is loaded. It is very fast and light weight

Answered By: sum2000

Cloud9 is not open-source, but it’s probably the best online IDE.

Answered By: Janus Troelsen

Well, Codenvy can be a good alternative. You may also find some info at http://bestonlineide.com

Answered By: bianchi
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.