# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.egg-info/
*.egg

# Virtual environments
.venv/
venv/
env/

# Tools
.mypy_cache/
.pytest_cache/
.ruff_cache/
.tox/

# Build outputs
dist/
build/
# mkdocs build output
site/

# Coverage
.coverage
.coverage.*
htmlcov/
coverage.xml

# Databases
*.db
*.sqlite3

# Secrets / local config
.env
.env.*
!.env.example

# OS
.DS_Store
Thumbs.db

# Editor
.vscode/
.idea/
*.swp
*.swo

# Static files collected by Django
staticfiles/
