Metadata-Version: 2.4
Name: cobfuscate
Version: 0.5.0
Summary: Python code obfuscator with C backend support
Author-email: WinFun15 <tibipocoxzsa@gmail.com>
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0.0
Requires-Dist: libcst>=0.4.0
Requires-Dist: astor>=0.8.1
Requires-Dist: cryptography>=3.4.0
Dynamic: license-file

# CObfuscate

Python code obfuscator with C backend support.

## Installation

**PC:**
```bash
pip install cobfuscate
```
(very long process if don't have installed Cryptography)

**Termux:**
*Please check you using GitHub or F-Droid version.*
1. Updating pkg
```bash
pkg update && pkg upgrade
```

2. Install deps and Python
```bash
pkg install python python-pip python-cryptography clang build-essential
```

3. Install CObfuscate
```bash
pip install cobfuscate
```

4. Setup memory access
```bash
termux-setup-storage 
```

## Usage

```bash
# Obfuscate single file
cobfuscate input.py output.py

# Obfuscate directory
cobfuscate ./src ./obfuscated
```

## Requirements

- Python 3.7+
- clang (for C extension)

## License

MIT
