# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python

# Virtual environments
.venv/
venv/
env/
ENV/

# Build / dist
dist/
build/
*.egg-info/
*.egg
.eggs/

# PyPI / Hatch
.hatch/

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

# Type checking / linting
.mypy_cache/
.ruff_cache/

# Environment / secrets
.env
.env.local
*.env

# SQLite databases (runtime data — not for source control)
*.db
*.sqlite
*.sqlite3

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

# OS
.DS_Store
Thumbs.db

# Logs
*.log
logs/
