Guys, I have much python code in modules which are resides in several python packages and now I need to create single python executable module or file which will include all these files, so it will be working on windows and on linux servers. What are possible solutions and how this can be done?
Share
That’s what egg files are for. Read this: What are the advantages of packaging your python library/application as an .egg file?