https://github.com/tameronline/pro_exe
https://github.com/tameronline/pro_exe
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tameronline/pro_exe
- Owner: TamerOnLine
- License: apache-2.0
- Created: 2025-05-23T16:02:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-23T16:10:30.000Z (about 1 year ago)
- Last Synced: 2025-05-23T17:37:05.841Z (about 1 year ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ๐ ๏ธ pro_exe - Python to EXE Converter
**pro_exe** is a simple, lightweight tool that allows you to convert any Python `.py` script into a standalone Windows `.exe` executable using [PyInstaller](https://www.pyinstaller.org/).
It supports drag & drop, command-line arguments, or interactive file selection via a GUI.
---
## ๐ Features
- โ
Converts any `.py` file into a `.exe` with the same name
- ๐ฑ๏ธ Supports drag & drop
- ๐ GUI file selection if no arguments are provided
- ๐งน Auto-cleanup of `build/`, `__pycache__/`, `.spec`, and `.log` files
- ๐ฆ Uses `PyInstaller` under the hood
---
## ๐ง Requirements
- Python 3.x
- `pyinstaller` (installed via `pip`)
Install requirements:
```bash
pip install -r requirements.txt
```
---
## ๐ฆ Usage
### โค Method 1: Run from terminal
```bash
python myapp.py your_script.py
```
### โค Method 2: Run without arguments (GUI file picker will open)
```bash
python myapp.py
```
### โค Method 3: Drag & Drop
Drag any `.py` file onto `myapp.py` to convert it to `.exe`.
---
## ๐ Output
The resulting `.exe` file will be available in the `dist/` directory:
```
dist/
โโโ your_script.exe
```
---
## โ License
This project is licensed under the **Apache License 2.0** โ see the [LICENSE](LICENSE) file for details.