# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
env/
dist/
build/
*.egg-info/
.eggs/

# Environment — never commit secrets
.env
.env.*
!.env.example

# Data directories — large, machine-local
data/

# Runtime logs
*.log

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

# Testing
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
.ruff_cache/

# Notebooks
.ipynb_checkpoints/

# OS
.DS_Store
Thumbs.db
