JSPython CLIWe provide a command line interface to run JSPython scriptsInstall from NPM# npm install -g jspython-cliCopyRun in terminal# jspython path/to/jspython/file jspython --file path/to/jspython/file jspython --file=test.jspy CopyPass parameters to script#In CLIjspython --file=path/to/jspython/file --param1=value --paramjspython path/to/jspython/file param1=value paramCopyIn scriptparams("param1") == "value" # trueparams("param") == false # trueCopySave evaluate log into file#jspython --file=path/to/jspython/file.jspy --output=path/to/log.txtCopy