# Python cache
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so

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

# Test and tooling cache
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/

# Build artifacts
build/
dist/
.eggs/
*.egg-info/
pip-wheel-metadata/

# Local environment and secrets
.env
.env.*
!.env.example

# Local runtime files
*.log
logs/
.data/
tmp/
temp/
*.db
*.sqlite
*.sqlite3

# IDE and OS files
.vscode/
.idea/
.DS_Store
Thumbs.db

# Jupyter
.ipynb_checkpoints/

