├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── example.js ├── jscaller ├── __init__.py ├── _compatiable.py ├── _engine.py ├── engine.py ├── express.py └── session.py └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/PyJSCaller/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/PyJSCaller/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/PyJSCaller/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/PyJSCaller/HEAD/README.rst -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- 1 | function add(a, b){ 2 | return a + b; 3 | } -------------------------------------------------------------------------------- /jscaller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/PyJSCaller/HEAD/jscaller/__init__.py -------------------------------------------------------------------------------- /jscaller/_compatiable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/PyJSCaller/HEAD/jscaller/_compatiable.py -------------------------------------------------------------------------------- /jscaller/_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/PyJSCaller/HEAD/jscaller/_engine.py -------------------------------------------------------------------------------- /jscaller/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/PyJSCaller/HEAD/jscaller/engine.py -------------------------------------------------------------------------------- /jscaller/express.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/PyJSCaller/HEAD/jscaller/express.py -------------------------------------------------------------------------------- /jscaller/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/PyJSCaller/HEAD/jscaller/session.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/PyJSCaller/HEAD/setup.py --------------------------------------------------------------------------------