We provide a command line interface to run JSPython scripts
npm install -g jspython-cli
jspython path/to/jspython/file
jspython --file path/to/jspython/file
jspython --file=test.jspy
In CLI
jspython --file=path/to/jspython/file --param1=value --param
jspython path/to/jspython/file param1=value param
In script
params("param1") == "value" # true
params("param") == false # true
jspython --file=path/to/jspython/file.jspy
jspython --file=path/to/jspython/file.jspy --output=path/to/log.txt
jspython --file=path/to/jspython/file.jspy --entryFunction=myFunc1
or
jspython -f=path/to/jspython/file.jspy -e=myFunc1
jspython --file=path/to/jspython/file.jspy --srcRoot=src
Normally you would expect package.json and node_modules to be in the root level and all scripts in the src
folder
-|- .git
-|- .vscode
-|- .gitignore
-|- .ws
-|- node_modules
-|- src
-|- my_code.jspy
-|- package.json
Then, from a root folder you can:
jspython --file=my_code.jspy --srcRoot=src --param1=some_Value
or
jspython -f=my_code.jspy -s=src --param1=some_Value
jspython -v
or
jspython --version
Run example using node. (Works only if you have build project npm run build
)
node ./bin/jspython --file=../jspython-examples/axios-test.jspy
node ./bin/jspython --file ../jspython-examples/parse.jspy
node ./bin/jspython --file=test.jspy --srcRoot=../jspython-examples/
A permissive BSD 3-Clause License (c) FalconSoft Ltd.