(don't bash me too hard) Python interpreter in JavaScript

Alan Meyer ameyer2 at yahoo.com
Tue Nov 15 18:05:49 EST 2011


On 11/15/2011 3:37 PM, Passiday wrote:
> Hello,
>
> I am looking for a way how to bring Python interpreter to JavaScript, in order to provide a web-based application with python scripting capabilities. The app would have basic IDE for writing and debugging the python code, but the interpretation, of course, would be done in JavaScript. I'd like to avoid any client-server transactions, so all the interpretation should take place on the client side. The purpose of all this would be to create educational platform for learning the programming in python.
>
> I hoped somebody already had done something like this, but I couldn't google up anything. I've found some crazy project emulating PC in JavaScript (and even running Linux on top of it), but not a python interpreter.
>
> Of course, I could take the python source and brutally recode it in JavaScript, but that seems like awful lot of work to do. Any ideas how I should proceed with this project?

I don't have any good ideas for how to do this, but I do have a warning. 
  The JavaScript security model prohibits a lot of things that Python 
does not prohibit.  So if you need to do anything like access a file on 
the user's machine or talk to some computer other than the one you came 
from, it won't work.

    Alan



More information about the Python-list mailing list