Reputation: 2215
I am trying to figure out how I can obfuscate python bytecode with new PyInstaller
.
c:\Anaconda32\envs\myenv\Scripts\pyinstaller.exe --distpath=./dist/win32 --workpath=./build/win32 --uac-admin --uac-uiaccess --key=MYKEY app.spec
However after building, I still hack the sources with PyInstaller Exe Rebuilder
as shown here:
Upvotes: 4
Views: 15513
Reputation: 1254
Just use --key
flag from pyinstaller
: https://pyinstaller.readthedocs.io/en/latest/usage.html#encrypting
Upvotes: 0
Reputation: 109
for more security you can use pyarmor and pyinstaller lib
use command:
Upvotes: 10