CLI Reference
Run Python scripts with automatic optimization from the command line.
Basic Usage
epochly run your_script.py
Commands
run
Run a Python script with optimization:
epochly run script.py [args...]epochly run -m module_name [args...]
doctor
Diagnose installation and system:
epochly doctorepochly doctor --verbose
version
Show version information:
epochly --version
Options
| Option | Description |
|---|---|
--level N | Set enhancement level (0-4) |
--workers N | Set number of workers |
--no-monitor | Disable performance monitoring |
--verbose | Enable verbose output |
Examples
# Run with Level 3 optimizationepochly run --level 3 script.py# Run module with 8 workersepochly run -m mypackage.main --workers 8# Run with verbose outputepochly run --verbose script.py