How would I combine multiple .py files into one .exe with Py2Exe
I used PyQt to make a GUI for my program, but it has multiple .py files, 2 are them are classes, and one launches the code. So I was wondering, how would I combine them into one whole program? Here is a download link to all the .py files I will be combining: http://www.multiupload.com/CJDL639CTH Shed Skin can turn your program into a fast executable, but maybe that doesn't work for your program. With py2exe and a setup.py like this you can easily turn your Python 2.x code in Windows into an executable with only one extra file, unlike cx_Freeze 's flat output of 11 files. For Python 3, use cx