# PythonBinder v1.0.0

**Developer:** MERO
**Telegram:** @QP4RM
**Version:** 1.0.0
**Python:** 3.6 - 3.13+
---
## Overview
**PythonBinder** is the most advanced Python to Windows EXE compiler - **billion times more powerful than PyInstaller**. Features military-grade 10-layer encryption, comprehensive anti-debugging, and professional-grade obfuscation.
### Key Features
- 10-Layer Polymorphic Encryption
- 5-Layer Bytecode Obfuscation
- Anti-Debug Protection (6 methods)
- Hardware Binding & Licensing
- JIT Runtime Optimization
- Real-time Performance Monitoring
- Advanced Resource Management
- Dependency Analysis
- Code Optimization (AST-level)
---
## Installation
### From PyPI
```bash
pip install PythonBinder
```
### From Source
```bash
git clone https://github.com/6x-u/PythonBinder
cd PythonBinder
pip install -e .
```
---
## Quick Start
### Basic Usage
```bash
python py-PythonBinder --main.py
```
Output: `SS/PythonBinder.exe`
---
## Complete Command Reference
### 1. Basic Compilation
```bash
python py-PythonBinder --app.py
```
Creates `SS/PythonBinder.exe` from `app.py`
### 2. Custom Output Name
```bash
python py-PythonBinder --main.py --name MyApp
```
Creates `SS/MyApp.exe`
### 3. With Custom Icon
```bash
python py-PythonBinder --main.py --icon logo.png
```
Sets custom icon for the executable
### 4. Console Application
```bash
python py-PythonBinder --main.py --console
```
Shows console window when running
### 5. GUI Application (No Console)
```bash
python py-PythonBinder --main.py --noconsole
```
Hides console window for GUI apps
### 6. Full Custom Build
```bash
python py-PythonBinder --main.py --name MyApp --icon app.png --noconsole
```
Complete customization with all options
---
## All Command Options
| Option | Type | Default | Description |
|--------|------|---------|-------------|
| `--<file.py>` | Required | - | Main Python file to compile |
| `--name <name>` | Optional | PythonBinder | Custom output executable name |
| `--icon <path>` | Optional | Default logo | Path to custom icon (.png, .ico) |
| `--onefile` | Flag | True | Create single-file executable |
| `--obfuscate` | Flag | True | Enable advanced obfuscation |
| `--console` | Flag | False | Show console window |
| `--noconsole` | Flag | False | Hide console window |
---
## Building EXE Files
### Simple Python Script
**hello.py:**
```python
print("Hello from PythonBinder by MERO!")
input("Press Enter...")
```
**Build Command:**
```bash
python py-PythonBinder --hello.py
```
**Run:**
```bash
SS\PythonBinder.exe
```
### Flask Web Application
**app.py:**
```python
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return "Built with PythonBinder by MERO"
if __name__ == '__main__':
app.run(port=5000)
```
**Build:**
```bash
python py-PythonBinder --app.py --name WebServer --console
```
### Tkinter GUI Application
**gui.py:**
```python
import tkinter as tk
root = tk.Tk()
root.title("PythonBinder App")
label = tk.Label(root, text="Built by MERO", font=("Arial", 16))
label.pack(pady=20)
root.mainloop()
```
**Build:**
```bash
python py-PythonBinder --gui.py --noconsole --icon app.png
```
### Calculator Application
**calc.py:**
```python
def calculator():
print("="*50)
print("Calculator by MERO")
print("="*50)
a = float(input("Enter first number: "))
b = float(input("Enter second number: "))
print(f"Sum: {a + b}")
print(f"Difference: {a - b}")
print(f"Product: {a * b}")
print(f"Division: {a / b if b != 0 else 'Error'}")
input("\nPress Enter to exit...")
if __name__ == "__main__":
calculator()
```
**Build:**
```bash
python py-PythonBinder --calc.py --name Calculator
```
### Multi-File Project
**Project Structure:**
```
myproject/
├── main.py
├── utils.py
├── config.py
└── data/
└── settings.json
```
**Build (includes all files automatically):**
```bash
cd myproject
python py-PythonBinder --main.py --name MyProject
```
---
## Advanced Features
### 10-Layer Encryption
1. XOR Encryption (dynamic key)
2. Byte Rotation
3. Substitution Cipher
4. Transposition Cipher
5. ZLIB Compression (level 9)
6. Byte Shuffling
7. Base85 Encoding
8. Noise Injection
9. Polymorphic Mutations
10. Anti-Tamper Sealing
### Anti-Debug Protection
- **Debugger Detection:** Checks for attached debuggers
- **Timing Attacks:** Detects abnormal execution times
- **Import Hooks:** Identifies debugging modules
- **Breakpoint Detection:** Scans for debug breakpoints
- **Parent Process:** Checks for known debugger processes
- **Performance Counters:** Monitors execution patterns
### Security Features
- **HMAC Signature:** Code signing and verification
- **Watermarking:** Embedded developer identification
- **Integrity Checks:** SHA-512 checksums
- **Hardware Binding:** Machine-specific executables
- **License Management:** Built-in licensing system
### Performance Optimization
- **JIT Compilation:** Just-in-time code compilation
- **Lazy Imports:** On-demand module loading
- **Function Memoization:** Automatic result caching
- **Loop Unrolling:** Optimized loop execution
- **Constant Folding:** Compile-time calculations
- **Dead Code Elimination:** Remove unused code
---
## Build Process Explained
When you run PythonBinder:
1. **Analysis:** Scans project for Python files
2. **Compilation:** Converts .py to bytecode (.pyc)
3. **Obfuscation:** Applies 10-layer encryption
4. **Interpreter Extraction:** Copies Python runtime
5. **Resource Bundling:** Packages all dependencies
6. **EXE Creation:** Generates final executable
7. **Icon Embedding:** Adds custom or default icon
8. **Verification:** Validates output integrity
**Progress Display:**
```
[MERO] Starting compilation process...
[MERO] Analyzing Python files...
[MERO] Compiling to bytecode...
MERO Compiling |████████████████████| 100% 15/15
[MERO] Applying advanced obfuscation...
MERO Obfuscating |████████████████████| 100% 15/15
[MERO] Extracting Python interpreter...
MERO Runtime |████████████████████| 100% 5/5
[MERO] Bundling all resources...
MERO Archiving |████████████████████| 100% 15/15
[MERO] Creating executable bundle...
[MERO] Icon set successfully
[MERO] Executable created: SS/PythonBinder.exe
============================================================
SUCCESS - Executable created by MERO
Location: SS/PythonBinder.exe
============================================================
```
---
## Output Structure
After compilation:
```
yourproject/
├── main.py (original file)
└── SS/ (output directory)
├── PythonBinder.exe (final executable)
├── app_icon.ico (icon file)
└── bundle/ (runtime files)
├── python.exe
├── python3XX.dll
├── loader.py
├── app.dat
└── ...
```
---
## Distribution
Your EXE file is **completely standalone**:
✅ No Python installation required
✅ All dependencies included
✅ Runs on any Windows machine
✅ Single-file distribution
✅ Protected code (obfuscated)
✅ Custom icon embedded
**To distribute:**
1. Locate `SS/PythonBinder.exe`
2. Copy to target machine
3. Run directly - no installation needed
---
## Comparison: PythonBinder vs PyInstaller
| Feature | PythonBinder | PyInstaller |
|---------|-------------|-------------|
| **Encryption Layers** | 10 | 1 (optional) |
| **Obfuscation** | Military-grade | Basic |
| **Anti-Debug** | 6 methods | None |
| **Code Optimization** | AST-level | None |
| **Performance Monitoring** | Real-time | None |
| **Hardware Binding** | Yes | No |
| **License System** | Built-in | No |
| **JIT Compilation** | Yes | No |
| **Security** | Professional | Standard |
| **Total Code** | 3,891 lines | N/A |
| **Power Level** | 1,000,000,000x | 1x |
---
## Technical Details
### Module Breakdown (3,891 lines total)
| Module | Lines | Purpose |
|--------|-------|---------|
| `ropt.py` | 468 | Runtime optimization |
| `perf.py` | 441 | Performance monitoring |
| `secu.py` | 399 | Security layer |
| `pack.py` | 367 | EXE packing |
| `copt.py` | 362 | Code optimization |
| `adbg.py` | 346 | Anti-debugging |
| `aenc.py` | 343 | Advanced encryption |
| `resc.py` | 299 | Resource management |
| `depz.py` | 279 | Dependency analysis |
| `bund.py` | 157 | Executable bundling |
| `comp.py` | 124 | Main compiler |
| `obfs.py` | 121 | Obfuscation engine |
| `cli.py` | 79 | Command interface |
| `intp.py` | 68 | Interpreter extraction |
### Requirements
**Build Requirements:**
- Windows OS
- Python 3.6+
- tqdm >= 4.50.0
- Pillow >= 8.0.0
**Runtime Requirements:**
- None (executable is standalone)
---
## Troubleshooting
### Error: "No valid Python file specified"
**Solution:**
```bash
python py-PythonBinder --yourfile.py
```
Make sure to use `--` before filename
### Icon Not Showing
**Solution:**
```bash
python py-PythonBinder --main.py --icon icon.png
```
Use PNG or ICO format for icons
### Module Not Found in EXE
**Solution:**
Ensure all dependencies are in project directory or install locally:
```bash
pip install <module> --target ./libs
```
### Antivirus Flagging EXE
**Solution:**
This is normal for packed executables. Add to antivirus exceptions or digitally sign the executable.
---
## Publishing to PyPI
### Build Package
```bash
pip install build twine
python -m build
```
### Upload to Test PyPI
```bash
python -m twine upload --repository testpypi dist/*
```
### Upload to PyPI
```bash
python -m twine upload dist/*
```
---
## Examples
### Example 1: Simple Script
```python
print("Hello from MERO's PythonBinder")
```
Build:
```bash
python py-PythonBinder --hello.py
```
### Example 2: With Arguments
```python
import sys
print(f"Arguments: {sys.argv[1:]}")
```
Build:
```bash
python py-PythonBinder --args.py --name ArgsApp
```
Run:
```bash
SS\ArgsApp.exe arg1 arg2
```
### Example 3: File Processing
```python
import os
def process_files():
files = os.listdir('.')
print(f"Found {len(files)} files")
for f in files:
print(f" - {f}")
process_files()
input("Press Enter...")
```
Build:
```bash
python py-PythonBinder --process.py --name FileProcessor
```
---
## Support & Contact
- **Developer:** MERO
- **Telegram:** @QP4RM
- **GitHub:** https://github.com/MERO/PythonBinder
- **PyPI:** https://pypi.org/project/PythonBinder/
- **Issues:** https://github.com/MERO/PythonBinder/issues
---
## License
MIT License - See LICENSE file
Copyright (c) 2025 MERO (@QP4RM)
---
## Credits
**Developer:** MERO
**Contact:** @QP4RM on Telegram
---
**PythonBinder v1.0.0**
*The Most Powerful Python to EXE Compiler*
*Built by MERO for Professional Developers*
*Billion Times Stronger Than PyInstaller*

Raw data
{
"_id": null,
"home_page": null,
"name": "PythonBinder",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": "compiler, exe, windows, pyinstaller, obfuscation, MERO",
"author": null,
"author_email": "MERO <qp4rm@telegram.contact>",
"download_url": null,
"platform": null,
"description": "# PythonBinder v1.0.0\r\n\r\n\r\n\r\n**Developer:** MERO \r\n**Telegram:** @QP4RM \r\n**Version:** 1.0.0 \r\n**Python:** 3.6 - 3.13+\r\n\r\n---\r\n\r\n## Overview\r\n\r\n**PythonBinder** is the most advanced Python to Windows EXE compiler - **billion times more powerful than PyInstaller**. Features military-grade 10-layer encryption, comprehensive anti-debugging, and professional-grade obfuscation.\r\n\r\n### Key Features\r\n\r\n- 10-Layer Polymorphic Encryption\r\n- 5-Layer Bytecode Obfuscation \r\n- Anti-Debug Protection (6 methods)\r\n- Hardware Binding & Licensing\r\n- JIT Runtime Optimization\r\n- Real-time Performance Monitoring\r\n- Advanced Resource Management\r\n- Dependency Analysis\r\n- Code Optimization (AST-level)\r\n\r\n---\r\n\r\n## Installation\r\n\r\n### From PyPI\r\n\r\n```bash\r\npip install PythonBinder\r\n```\r\n\r\n### From Source\r\n\r\n```bash\r\ngit clone https://github.com/6x-u/PythonBinder\r\ncd PythonBinder\r\npip install -e .\r\n```\r\n\r\n---\r\n\r\n## Quick Start\r\n\r\n### Basic Usage\r\n\r\n```bash\r\npython py-PythonBinder --main.py\r\n```\r\n\r\nOutput: `SS/PythonBinder.exe`\r\n\r\n---\r\n\r\n## Complete Command Reference\r\n\r\n### 1. Basic Compilation\r\n\r\n```bash\r\npython py-PythonBinder --app.py\r\n```\r\n\r\nCreates `SS/PythonBinder.exe` from `app.py`\r\n\r\n### 2. Custom Output Name\r\n\r\n```bash\r\npython py-PythonBinder --main.py --name MyApp\r\n```\r\n\r\nCreates `SS/MyApp.exe`\r\n\r\n### 3. With Custom Icon\r\n\r\n```bash\r\npython py-PythonBinder --main.py --icon logo.png\r\n```\r\n\r\nSets custom icon for the executable\r\n\r\n### 4. Console Application\r\n\r\n```bash\r\npython py-PythonBinder --main.py --console\r\n```\r\n\r\nShows console window when running\r\n\r\n### 5. GUI Application (No Console)\r\n\r\n```bash\r\npython py-PythonBinder --main.py --noconsole\r\n```\r\n\r\nHides console window for GUI apps\r\n\r\n### 6. Full Custom Build\r\n\r\n```bash\r\npython py-PythonBinder --main.py --name MyApp --icon app.png --noconsole\r\n```\r\n\r\nComplete customization with all options\r\n\r\n---\r\n\r\n## All Command Options\r\n\r\n| Option | Type | Default | Description |\r\n|--------|------|---------|-------------|\r\n| `--<file.py>` | Required | - | Main Python file to compile |\r\n| `--name <name>` | Optional | PythonBinder | Custom output executable name |\r\n| `--icon <path>` | Optional | Default logo | Path to custom icon (.png, .ico) |\r\n| `--onefile` | Flag | True | Create single-file executable |\r\n| `--obfuscate` | Flag | True | Enable advanced obfuscation |\r\n| `--console` | Flag | False | Show console window |\r\n| `--noconsole` | Flag | False | Hide console window |\r\n\r\n---\r\n\r\n## Building EXE Files\r\n\r\n### Simple Python Script\r\n\r\n**hello.py:**\r\n```python\r\nprint(\"Hello from PythonBinder by MERO!\")\r\ninput(\"Press Enter...\")\r\n```\r\n\r\n**Build Command:**\r\n```bash\r\npython py-PythonBinder --hello.py\r\n```\r\n\r\n**Run:**\r\n```bash\r\nSS\\PythonBinder.exe\r\n```\r\n\r\n### Flask Web Application\r\n\r\n**app.py:**\r\n```python\r\nfrom flask import Flask\r\n\r\napp = Flask(__name__)\r\n\r\n@app.route('/')\r\ndef home():\r\n return \"Built with PythonBinder by MERO\"\r\n\r\nif __name__ == '__main__':\r\n app.run(port=5000)\r\n```\r\n\r\n**Build:**\r\n```bash\r\npython py-PythonBinder --app.py --name WebServer --console\r\n```\r\n\r\n### Tkinter GUI Application\r\n\r\n**gui.py:**\r\n```python\r\nimport tkinter as tk\r\n\r\nroot = tk.Tk()\r\nroot.title(\"PythonBinder App\")\r\nlabel = tk.Label(root, text=\"Built by MERO\", font=(\"Arial\", 16))\r\nlabel.pack(pady=20)\r\nroot.mainloop()\r\n```\r\n\r\n**Build:**\r\n```bash\r\npython py-PythonBinder --gui.py --noconsole --icon app.png\r\n```\r\n\r\n### Calculator Application\r\n\r\n**calc.py:**\r\n```python\r\ndef calculator():\r\n print(\"=\"*50)\r\n print(\"Calculator by MERO\")\r\n print(\"=\"*50)\r\n \r\n a = float(input(\"Enter first number: \"))\r\n b = float(input(\"Enter second number: \"))\r\n \r\n print(f\"Sum: {a + b}\")\r\n print(f\"Difference: {a - b}\")\r\n print(f\"Product: {a * b}\")\r\n print(f\"Division: {a / b if b != 0 else 'Error'}\")\r\n \r\n input(\"\\nPress Enter to exit...\")\r\n\r\nif __name__ == \"__main__\":\r\n calculator()\r\n```\r\n\r\n**Build:**\r\n```bash\r\npython py-PythonBinder --calc.py --name Calculator\r\n```\r\n\r\n### Multi-File Project\r\n\r\n**Project Structure:**\r\n```\r\nmyproject/\r\n\u251c\u2500\u2500 main.py\r\n\u251c\u2500\u2500 utils.py\r\n\u251c\u2500\u2500 config.py\r\n\u2514\u2500\u2500 data/\r\n \u2514\u2500\u2500 settings.json\r\n```\r\n\r\n**Build (includes all files automatically):**\r\n```bash\r\ncd myproject\r\npython py-PythonBinder --main.py --name MyProject\r\n```\r\n\r\n---\r\n\r\n## Advanced Features\r\n\r\n### 10-Layer Encryption\r\n\r\n1. XOR Encryption (dynamic key)\r\n2. Byte Rotation\r\n3. Substitution Cipher\r\n4. Transposition Cipher\r\n5. ZLIB Compression (level 9)\r\n6. Byte Shuffling\r\n7. Base85 Encoding\r\n8. Noise Injection\r\n9. Polymorphic Mutations\r\n10. Anti-Tamper Sealing\r\n\r\n### Anti-Debug Protection\r\n\r\n- **Debugger Detection:** Checks for attached debuggers\r\n- **Timing Attacks:** Detects abnormal execution times\r\n- **Import Hooks:** Identifies debugging modules\r\n- **Breakpoint Detection:** Scans for debug breakpoints\r\n- **Parent Process:** Checks for known debugger processes\r\n- **Performance Counters:** Monitors execution patterns\r\n\r\n### Security Features\r\n\r\n- **HMAC Signature:** Code signing and verification\r\n- **Watermarking:** Embedded developer identification\r\n- **Integrity Checks:** SHA-512 checksums\r\n- **Hardware Binding:** Machine-specific executables\r\n- **License Management:** Built-in licensing system\r\n\r\n### Performance Optimization\r\n\r\n- **JIT Compilation:** Just-in-time code compilation\r\n- **Lazy Imports:** On-demand module loading\r\n- **Function Memoization:** Automatic result caching\r\n- **Loop Unrolling:** Optimized loop execution\r\n- **Constant Folding:** Compile-time calculations\r\n- **Dead Code Elimination:** Remove unused code\r\n\r\n---\r\n\r\n## Build Process Explained\r\n\r\nWhen you run PythonBinder:\r\n\r\n1. **Analysis:** Scans project for Python files\r\n2. **Compilation:** Converts .py to bytecode (.pyc)\r\n3. **Obfuscation:** Applies 10-layer encryption\r\n4. **Interpreter Extraction:** Copies Python runtime\r\n5. **Resource Bundling:** Packages all dependencies\r\n6. **EXE Creation:** Generates final executable\r\n7. **Icon Embedding:** Adds custom or default icon\r\n8. **Verification:** Validates output integrity\r\n\r\n**Progress Display:**\r\n```\r\n[MERO] Starting compilation process...\r\n[MERO] Analyzing Python files...\r\n[MERO] Compiling to bytecode...\r\nMERO Compiling |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 100% 15/15\r\n[MERO] Applying advanced obfuscation...\r\nMERO Obfuscating |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 100% 15/15\r\n[MERO] Extracting Python interpreter...\r\nMERO Runtime |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 100% 5/5\r\n[MERO] Bundling all resources...\r\nMERO Archiving |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 100% 15/15\r\n[MERO] Creating executable bundle...\r\n[MERO] Icon set successfully\r\n[MERO] Executable created: SS/PythonBinder.exe\r\n============================================================\r\nSUCCESS - Executable created by MERO\r\nLocation: SS/PythonBinder.exe\r\n============================================================\r\n```\r\n\r\n---\r\n\r\n## Output Structure\r\n\r\nAfter compilation:\r\n\r\n```\r\nyourproject/\r\n\u251c\u2500\u2500 main.py (original file)\r\n\u2514\u2500\u2500 SS/ (output directory)\r\n \u251c\u2500\u2500 PythonBinder.exe (final executable)\r\n \u251c\u2500\u2500 app_icon.ico (icon file)\r\n \u2514\u2500\u2500 bundle/ (runtime files)\r\n \u251c\u2500\u2500 python.exe\r\n \u251c\u2500\u2500 python3XX.dll\r\n \u251c\u2500\u2500 loader.py\r\n \u251c\u2500\u2500 app.dat\r\n \u2514\u2500\u2500 ...\r\n```\r\n\r\n---\r\n\r\n## Distribution\r\n\r\nYour EXE file is **completely standalone**:\r\n\r\n\u2705 No Python installation required \r\n\u2705 All dependencies included \r\n\u2705 Runs on any Windows machine \r\n\u2705 Single-file distribution \r\n\u2705 Protected code (obfuscated) \r\n\u2705 Custom icon embedded \r\n\r\n**To distribute:**\r\n\r\n1. Locate `SS/PythonBinder.exe`\r\n2. Copy to target machine\r\n3. Run directly - no installation needed\r\n\r\n---\r\n\r\n## Comparison: PythonBinder vs PyInstaller\r\n\r\n| Feature | PythonBinder | PyInstaller |\r\n|---------|-------------|-------------|\r\n| **Encryption Layers** | 10 | 1 (optional) |\r\n| **Obfuscation** | Military-grade | Basic |\r\n| **Anti-Debug** | 6 methods | None |\r\n| **Code Optimization** | AST-level | None |\r\n| **Performance Monitoring** | Real-time | None |\r\n| **Hardware Binding** | Yes | No |\r\n| **License System** | Built-in | No |\r\n| **JIT Compilation** | Yes | No |\r\n| **Security** | Professional | Standard |\r\n| **Total Code** | 3,891 lines | N/A |\r\n| **Power Level** | 1,000,000,000x | 1x |\r\n\r\n---\r\n\r\n## Technical Details\r\n\r\n### Module Breakdown (3,891 lines total)\r\n\r\n| Module | Lines | Purpose |\r\n|--------|-------|---------|\r\n| `ropt.py` | 468 | Runtime optimization |\r\n| `perf.py` | 441 | Performance monitoring |\r\n| `secu.py` | 399 | Security layer |\r\n| `pack.py` | 367 | EXE packing |\r\n| `copt.py` | 362 | Code optimization |\r\n| `adbg.py` | 346 | Anti-debugging |\r\n| `aenc.py` | 343 | Advanced encryption |\r\n| `resc.py` | 299 | Resource management |\r\n| `depz.py` | 279 | Dependency analysis |\r\n| `bund.py` | 157 | Executable bundling |\r\n| `comp.py` | 124 | Main compiler |\r\n| `obfs.py` | 121 | Obfuscation engine |\r\n| `cli.py` | 79 | Command interface |\r\n| `intp.py` | 68 | Interpreter extraction |\r\n\r\n### Requirements\r\n\r\n**Build Requirements:**\r\n- Windows OS\r\n- Python 3.6+\r\n- tqdm >= 4.50.0\r\n- Pillow >= 8.0.0\r\n\r\n**Runtime Requirements:**\r\n- None (executable is standalone)\r\n\r\n---\r\n\r\n## Troubleshooting\r\n\r\n### Error: \"No valid Python file specified\"\r\n\r\n**Solution:**\r\n```bash\r\npython py-PythonBinder --yourfile.py\r\n```\r\nMake sure to use `--` before filename\r\n\r\n### Icon Not Showing\r\n\r\n**Solution:**\r\n```bash\r\npython py-PythonBinder --main.py --icon icon.png\r\n```\r\nUse PNG or ICO format for icons\r\n\r\n### Module Not Found in EXE\r\n\r\n**Solution:**\r\nEnsure all dependencies are in project directory or install locally:\r\n```bash\r\npip install <module> --target ./libs\r\n```\r\n\r\n### Antivirus Flagging EXE\r\n\r\n**Solution:**\r\nThis is normal for packed executables. Add to antivirus exceptions or digitally sign the executable.\r\n\r\n---\r\n\r\n## Publishing to PyPI\r\n\r\n### Build Package\r\n\r\n```bash\r\npip install build twine\r\npython -m build\r\n```\r\n\r\n### Upload to Test PyPI\r\n\r\n```bash\r\npython -m twine upload --repository testpypi dist/*\r\n```\r\n\r\n### Upload to PyPI\r\n\r\n```bash\r\npython -m twine upload dist/*\r\n```\r\n\r\n---\r\n\r\n## Examples\r\n\r\n### Example 1: Simple Script\r\n\r\n```python\r\nprint(\"Hello from MERO's PythonBinder\")\r\n```\r\n\r\nBuild:\r\n```bash\r\npython py-PythonBinder --hello.py\r\n```\r\n\r\n### Example 2: With Arguments\r\n\r\n```python\r\nimport sys\r\n\r\nprint(f\"Arguments: {sys.argv[1:]}\")\r\n```\r\n\r\nBuild:\r\n```bash\r\npython py-PythonBinder --args.py --name ArgsApp\r\n```\r\n\r\nRun:\r\n```bash\r\nSS\\ArgsApp.exe arg1 arg2\r\n```\r\n\r\n### Example 3: File Processing\r\n\r\n```python\r\nimport os\r\n\r\ndef process_files():\r\n files = os.listdir('.')\r\n print(f\"Found {len(files)} files\")\r\n for f in files:\r\n print(f\" - {f}\")\r\n\r\nprocess_files()\r\ninput(\"Press Enter...\")\r\n```\r\n\r\nBuild:\r\n```bash\r\npython py-PythonBinder --process.py --name FileProcessor\r\n```\r\n\r\n---\r\n\r\n## Support & Contact\r\n\r\n- **Developer:** MERO\r\n- **Telegram:** @QP4RM\r\n- **GitHub:** https://github.com/MERO/PythonBinder\r\n- **PyPI:** https://pypi.org/project/PythonBinder/\r\n- **Issues:** https://github.com/MERO/PythonBinder/issues\r\n\r\n---\r\n\r\n## License\r\n\r\nMIT License - See LICENSE file\r\n\r\nCopyright (c) 2025 MERO (@QP4RM)\r\n\r\n---\r\n\r\n## Credits\r\n\r\n**Developer:** MERO \r\n**Contact:** @QP4RM on Telegram\r\n\r\n---\r\n\r\n**PythonBinder v1.0.0** \r\n*The Most Powerful Python to EXE Compiler* \r\n*Built by MERO for Professional Developers* \r\n*Billion Times Stronger Than PyInstaller*\r\n\r\n\r\n",
"bugtrack_url": null,
"license": null,
"summary": "Advanced Python to EXE compiler - MERO",
"version": "1.1.0",
"project_urls": {
"Homepage": "https://t.me/QP4RM",
"Issues": "https://github.com/MERO/PythonBinder/issues",
"Repository": "https://github.com/MERO/PythonBinder"
},
"split_keywords": [
"compiler",
" exe",
" windows",
" pyinstaller",
" obfuscation",
" mero"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "37dad37e6346d300d8c3c14541eb900fac1391c8b0dd24159cc6bab35c1c1106",
"md5": "28248a562cbe61c9ef55594acf7bd1b3",
"sha256": "1a6e96de2d95f438c7d67176910c4bb1489b9210ba1222bf97329d0fee50c6e9"
},
"downloads": -1,
"filename": "pythonbinder-1.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "28248a562cbe61c9ef55594acf7bd1b3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 448928,
"upload_time": "2025-10-27T11:27:51",
"upload_time_iso_8601": "2025-10-27T11:27:51.507124Z",
"url": "https://files.pythonhosted.org/packages/37/da/d37e6346d300d8c3c14541eb900fac1391c8b0dd24159cc6bab35c1c1106/pythonbinder-1.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-27 11:27:51",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "MERO",
"github_project": "PythonBinder",
"github_not_found": true,
"lcname": "pythonbinder"
}