Create python3.js

This commit is contained in:
Namhyeon Go 2022-01-19 13:54:49 +09:00 committed by GitHub
parent 3032abbdee
commit 39fe47042f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

30
lib/python3.js Normal file
View File

@ -0,0 +1,30 @@
var SHELL = require("lib/shell");
function PythonObject() {
this.version = "3.10.2-embed";
this.platform = "amd64";
this.setVersion = function(version) {
this.version = version;
};
this.setPlatform = function(platform) {
this.platfrom = platform;
};
this.exec = function(scriptName, args) {
return SHELL.exec([
"bin\\python-" + this.version + "\\" + this.platform + "\\python",
scriptName
].concat(args));
};
}
exports.PythonObject = PythonObject;
exports.create = function() {
return new PythonObject();
};
exports.VERSIONINFO = "Python Interface (python3.js) version 0.1";
exports.global = global;
exports.require = global.require;