# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/
*.so

# Virtual envs
.venv/
venv/
env/

# Test / coverage
.pytest_cache/
.coverage
htmlcov/

# IDE
.vscode/
.idea/
*.swp

# Local data (user sessions — NEVER commit)
.model_router/
.state.json
*.state.json

# Secrets / env
.env
.env.local
*.key
secrets/

# OS
.DS_Store
Thumbs.db
