python-shell
Advanced tools
Comparing version 0.1.0 to 0.2.0
@@ -53,3 +53,3 @@ var EventEmitter = require('events').EventEmitter; | ||
this.script = path.join(options.scriptPath || './python', script); | ||
this.script = path.join(options.scriptPath || './', script); | ||
this.command = pythonOptions.concat(this.script, scriptArgs); | ||
@@ -56,0 +56,0 @@ this.mode = options.mode || 'text'; |
{ | ||
"name": "python-shell", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "Run Python scripts from Node.js with simple (but efficient) inter-process communication through stdio", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -144,3 +144,3 @@ # python-shell | ||
* `pythonOptions`: Array of option switches to pass to "python" | ||
* `scriptPath`: The default path where to look for scripts. Default: "./python" | ||
* `scriptPath`: The default path where to look for scripts. Default is the current working directory. | ||
* `args`: Array of arguments to pass to the script | ||
@@ -147,0 +147,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
28331