# Python caches
__pycache__/
**/__pycache__/
*.py[cod]

# Test and type caches
.pytest_cache/
.mypy_cache/
.ruff_cache/

# Virtualenvs
.venv/
venv/

# Coverage
.coverage
coverage.xml
htmlcov/

# OS junk
.DS_Store

# Logs and temp
*.log
logs/
tmp/

# Env files
.env
.env.*

# Local data used by tests/runs
data/