We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Question: I am executing some python code coming from client on the server. I want to provide some stdin to the program code. How do I do that ?
Any relevant python/javascript code: This is how I am using it currently...
PythonShell.runString('some python code',null) .then(messages=>{ console.log(messages) //server stuff }) .catch(err => { console.log(err) // respond with err })
How can I pass input to the program ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The Question:
I am executing some python code coming from client on the server. I want to provide some stdin to the program code. How do I do that ?
Any relevant python/javascript code:
This is how I am using it currently...
PythonShell.runString('some python code',null) .then(messages=>{ console.log(messages) //server stuff }) .catch(err => { console.log(err) // respond with err })
How can I pass input to the program ?
The text was updated successfully, but these errors were encountered: