IronPython
Write browser applications in Python
IronPython allows you to use python code in browser applications to script the HTML page and vector-graphics; combining the benefits of Python and rich-internet applications, without changing the way web-developers work.
At a very basic level, this lets you write Python code directly in HTML pages:
<script type="text/python">
window.Alert("Hello from Python")
</script>