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: How do I send my whole .env file to a python script?
Any relevant python/javascript code: I was trying the following with no success:
let options = { args: [req.params.streamId, req.params.term], env: process.env }; PythonShell.run( "scripts/associations.py", options, (err, results) => { ... } )
The text was updated successfully, but these errors were encountered:
have you tried passing envs as an extra argument and read it back in using *kwargs ?
Sorry, something went wrong.
No branches or pull requests
The Question:
How do I send my whole .env file to a python script?
Any relevant python/javascript code:
I was trying the following with no success:
The text was updated successfully, but these errors were encountered: