I currently have a project in eclipse and Im using Pydev, and im trying to export all the source code..I know how to to export java files into a jar file but my question is how can you export python files in eclipse ? or can you even do that ? thanks
Share
Python isn’t like Java – it’s an interpreted from the source files. Your
*.pyfiles are the only artefacts you need.You may have seen
*.pycand*.pyofiles around, but these are not needed, and don’t inherently run faster than plain.pyfiles. Read more here.If you’re looking to distribute your python code publicly, you may want to take a look at the python packaging documentation.