Coding Global Background
Coding Global

attempting to run python script in node.js

Archiviert 2 years ago
2 Nachrichten
1 Mitglieder
Erstellt 2 years ago
Aktualisiert 2 years ago
In Discord öffnen
Q
quaint racoon
Verified
wtf is this error
function runpy(username){
var dataToSend;
 const python = spawn('python', ['verify.py']);
 python.stdout.on('data', function (data) {
  dataToSend = data.toString();
console.log(dataToSend)
 });
 python.on('close', (code) => {
 console.log(dataToSend)
})};
runpy()

Antworten (2)