Casebash
Casebash

Reputation: 118782

Python Console Website

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

Upvotes: 15

Views: 9189

Answers (6)

Kev
Kev

Reputation: 119806

This is one I know of:

http://shell.appspot.com/

There's also Lord of the REPL's:

http://lotrepls.appspot.com/

Python on repl.it:

http://repl.it/languages/Python

Upvotes: 12

tkc
tkc

Reputation: 101

An online python editor: http://doc.pyschools.com/console.

Upvotes: 2

heltonbiker
heltonbiker

Reputation: 27575

This one is very interesting, it has an interactive shell AND a script editing area:

Py I/O

Upvotes: 4

codeape
codeape

Reputation: 100766

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

Upvotes: 4

Oduvan
Oduvan

Reputation: 2757

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

Upvotes: 3

Isaiah
Isaiah

Reputation: 4309

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/.

Upvotes: 11

Related Questions