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

# Virtual environments
.venv/
venv/
env/

# Secrets — never commit real credentials
.env
.env.*
!.env.example

# Test / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.ruff_cache/

# Editor / OS
.idea/
.vscode/
.DS_Store
