My internship has asked me to make my code executable for people who do not have Python downloaded. I can run parts of it on online Python compilers, but it uses different libraries that are not supported on those compilers. My program opens a .csv file specified by the user and filters it and writes the new data to a new .csv file. To implement the code online, I think I would need to learn JavaScript? Is there any other alternative? I appreciate any guidance provided!
Asked
Active
Viewed 522 times
-2
-
Perhaps your employers are requesting your program be 1. compiled rather than interpreted as a Python script (See the various ways of producing executables for your target platform from Python scripts) or 2. Create a web application which calls your Python service via a RESTful API? Either way, I would suggest you approach your employers for clarification about this task of yours. – Eoin Dowling Jul 21 '21 at 23:26
2 Answers
0
There is many online python runner. Example https://www.programiz.com/python-programming/online-compiler/

Dibyendu Dey
- 349
- 2
- 16