Hard Obfuscate Tool For Python
pip install pyshield
And thats it. So easy.
Printing The Obfuscate Code :
pyshield -f <file_to_obfuscate> -l <level_of_obfuscate>
Save A File :
pyshield -f <file_to_obfuscate> -l <level_of_obfuscate> -o <output_file>
Printing The Obfuscated Code :
from pyshield import PyShield
result = PyShield.obfuscate(file_path,level)
print(result)
from pyshield import PyShield
result = PyShield.obfuscate("example.py",3)
open("result.py","w",encoding='utf8').write(result)