Imagine you have the sourcecode in a file in main.py and a function called start() that starts the code.
then just create another .py file and write:
from main import start; start()
( don't worry, like pip imports, py2exe will pack the other file in the .exe )
when decompiling the .exe the tool will only find this file with no source code in it, and l I think skid will be too dumb to search elsewhere in the .exe for the remaining files
Imagine you have the sourcecode in a file in
main.py
and a function calledstart()
that starts the code.then just create another .py file and write:
( don't worry, like pip imports, py2exe will pack the other file in the .exe )
when decompiling the .exe the tool will only find this file with no source code in it, and l I think skid will be too dumb to search elsewhere in the .exe for the remaining files