Is there any way to get Python to run on a web browser, other than silverlight?
I'm pretty sure not, but it never hurts to ask (usually).
Is there any way to get Python to run on a web browser, other than silverlight?
I'm pretty sure not, but it never hurts to ask (usually).
Haven't tried it myself but Pyjamas (http://pyjs.org/) claims to contain a Python-to-Javascript compiler. Not exactly what you're asking for but might be worth a look.
Maybe not exactly what you asked, but close enough: Pyjamas -- Python-to-JavaScript compiler
There's an open-source project called emscripten that converts C/C++ to JavaScript. The have a version of CPython converted with this tool that runs in the browser as one of their demos.
Probably not something you actually want to do, for a number of reasons, but... it's technically possible. Any Turing-complete language can be converted to any other, after all, and if the languages are popular enough, someone, somewhere, has probably written code to do it.