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

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

# Virtual envs
.venv/
venv/
.tool-venv/

# Test / coverage
.pytest_cache/
.coverage
htmlcov/

# IDE
.vscode/
.idea/
*.swp

# OS
.DS_Store
Thumbs.db

# Secrets (the connections.toml at runtime can have real DSNs; never commit)
.env
*.env.local
