0xe2d0 / pyshield

Hard Obfuscate Tool For Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

💥 PyShield - A Python Obfuscate Tool

Hard Obfuscate Tool For Python

🤖 Installation

pip install pyshield

And thats it. So easy.

✨ Quick Start

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>

🔥 As A Module

Printing The Obfuscated Code :

from pyshield import PyShield
result = PyShield.obfuscate(file_path,level)
print(result)

☠️ For Windows

from pyshield import PyShield
result = PyShield.obfuscate("example.py",3)
open("result.py","w",encoding='utf8').write(result)

About

Hard Obfuscate Tool For Python

License:MIT License


Languages

Language:Python 100.0%