Can Python be used for client side web development? [closed]
If yes are there any frameworks/Tutorials/tips/etc recommended?
N00b at Python but I have tons of PHP experience and wanted to expand my skill set.
I know Python is great at server side execution, just wanted to know about client side as well.
Solution 1:
Have you seen Skulpt?
Skulpt is an entirely in-browser implementation of Python.
No preprocessing, plugins or server-side support required, just write Python and reload.
Solution 2:
You can use pyjamas to convert Python code to JS code that runs in the browser (note that pyjamas also offers much more). So YES, you can use Python for client side web development.
Pyjamas is basically a port of the Google Web Toolkit, which allows you to write client side code in Java.