How do I execute python programs in a Google Chrome extension
I have a python program and I need to call this code using 开发者_如何学GoJavaScript since I am using chrome extension.
So is there any way that we can call python code in java script and execute them i.e if I click the plug-in the manifest.json file should have an external command so that it calls python program and executes it and shows the desired output
You can try Pyjamas. It's a Python-to-Javascript compiler.
精彩评论