Пробовал искать формы, но не мог найти решение, любая помощь здесь очень ценится.
Попытка вызова Python из узла express, но ошибка ниже.
var PythonShell = require('python-shell')
PythonShell.run('script.py', options,function (err) {
if (err) throw err;
console.log('finished');
});
OR
PythonShell.run('script.py',function (err) {
if (err) throw err;
console.log('finished');
});
ERROR
function extend(obj, ...args) {
^^^
SyntaxError: Unexpected token ...
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:414:25)
at Object.Module._extensions..js (module.js:442:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:311:12)
at Module.require (module.js:366:17)
at require (module.js:385:17)
at Object.<anonymous> (P:\html\testPy.js:1:81)
at Module._compile (module.js:435:26)
at Object.Module._extensions..js (module.js:442:10)