You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function() {
let pyshell = new PythonShell('.myscript.py')
let content = ""
pyshell.on('message',function(message){
content = message
})
return content // content needs to be message instead due to async nature it returns empty string
}