3

I was planning to obfuscate and create a executable file for my project. The problem is when I pack, the "rsc" folder are not included in the packed project but just the Spring.py.

Can anyone help me ? Best regards,

enter image description here

2 Answers2

1

Use the built-in pack argument, and include --add-data to include your folder

pyarmor pack -e " --onefile --icon=logo.ico --add-data path/to/dir;dest/dir" Spring.py

Younes
  • 72
  • 2
  • 10
0

Hi from what I understand you can obfuscate your scripts first then use pyinstaller normally selecting the obfuscated files and it will create your executable.