Documentation

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 doctor
epochly doctor --verbose

version

Show version information:

epochly --version

Options

OptionDescription
--level NSet enhancement level (0-4)
--workers NSet number of workers
--no-monitorDisable performance monitoring
--verboseEnable verbose output

Examples

# Run with Level 3 optimization
epochly run --level 3 script.py
# Run module with 8 workers
epochly run -m mypackage.main --workers 8
# Run with verbose output
epochly run --verbose script.py