tags:

views:

277

answers:

4

I believe that I once saw a website that is like an online Python console. Does anyone know of such a website?

+6  A: 

This is one I know of:

http://try-python.mired.org/

And google have one:

http://shell.appspot.com/

There's also Lord of the REPL's:

http://lotrepls.appspot.com/

Kev
The appspot example project was the most useful for me, extremely concise and straight forward code.
David
+3  A: 

While not really a "console", skulpt.org runs python code client-side with no plugins or anything, which makes it a lot faster than a server-side prompt. For server side and a more traditional shell I found this: http://shell.appspot.com/.

DoR
+1 For the nice links. Did not know about skulpt...
ChristopheD
+2  A: 

IronPython (using Silverlight or Moonlight 2): http://www.trypython.org/

codeape
which used silverlight?
Oduvan
The site uses Silverlight (or Moonlight 2) to run IronPython in the browser
codeape
+2  A: 

I'm just find this one http://con.appspot.com/console/

Oduvan