#【ライブラリ説明】
node.jsでpythonが使える
#【プログラム】
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);
});
他にもpython3を使えたり、.pyファイルからの実行が可能