Documentation

User Guide

Epochly User Guide: CLI Reference

Epochly command-line interface for running scripts, checking status, and managing optimization settings.

Run Python scripts with automatic optimization from the command line.

Basic Usage

epochly your_script.py

Commands

Script Execution

Run a Python script with optimization:

epochly script.py [args...]
epochly -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-optimizeDisable optimization (monitoring only)
--verboseEnable verbose output

Examples

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