Skip to content

Quick Start

Get started with Pyreload in minutes.

Basic Command

The simplest way to use Pyreload:

pyreload myapp.py

This will: - Watch the current directory for changes - Restart myapp.py whenever a .py file changes - Show restart notifications

Common Options

Watch Specific Files

pyreload -w "*.py" -w "config/*.yaml" myapp.py

Ignore Patterns

pyreload -i "tests/*" -i "__pycache__/*" myapp.py

Pass Arguments to Your Script

pyreload myapp.py -- --port 8000 --debug

Next Steps