# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

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

# Secrets / environment files
# Anything env-shaped holds live credentials and must never be committed:
# .env, suffixed variants such as .env.local / .env.production, any *.env
# file, and the direnv .envrc. .env.example is the committed template and is
# negated last so it stays tracked.
.env
.env.*
*.env
.envrc
!.env.example

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
*.cassette

# Type checking
.mypy_cache/
.dmypy.json
dmypy.json

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db
