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

# Data directory (local DB + cached CSV — never commit)
data/*.sqlite
data/*.csv
data/*.db

# IDE
.vscode/
.idea/
*.swp
*.swo
.DS_Store

# Test artefacts
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage
coverage.xml

# Jupyter
.ipynb_checkpoints/

# MkDocs build output
site/

# .env (local secrets — never commit)
.env
