javascript – is there a node.js lib/package that allows me to generate an executable python file?
So, I’ve got this web project in which a user inputs some info to a form and a python file is generated containing that info.
What I want to do is send that file to my node.js server so that it transforms it into an executable python file, containing it’s dependencies, and sends it back to the user so he can download it. With that said, is there any library/package that allows me to do that with Node.Js?
ps: I am also considering using Django instead of Node.Js if it turns out to be too complicated or less efficient than Django.
Read more here: Source link