Sie können Python mit node.js verwenden
python-runner.js
var Python = require("python-runner");
Python.exec(
"print('Carma Carpooling')" + "\n" +
"print('Get there together')" + "\n"
//Carma Carpooling
//Get there together
)
.then(function(data){
console.log(data);
});
Sie können auch Python3 verwenden oder es aus einer .py-Datei ausführen
Recommended Posts