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

# Documentation build output (see mkdocs.yml)
site/

# Testing
.pytest_cache/
.coverage
coverage.xml
htmlcov/
.mypy_cache/
.ruff_cache/

# Editors
.vscode/
.idea/
*.swp
.DS_Store

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

# Sample apps make these wherever you run them from
*.sqlite3
*.db
