```
# Dependencies
__pycache__/
*.pyc
*.pyo
*.pyd
.pytest_cache/
.mypy_cache/
.coverage
coverage/
htmlcov/

# Build and distribution artifacts
build/
dist/
*.egg-info/
*.whl
*.tar.gz
*.zip

# Environment files
.env
.env.local
*.env.*

# Logs and temporary files
*.log
# This small log is part of the documented demo command.
!demo_data/sample.log
*.tmp
*.swp

# Editors and IDEs
.vscode/
.idea/
*.swp
*.swo

# OS generated files
.DS_Store
Thumbs.db
```