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

# Virtual environments
.venv/
venv/
env/

# Build system artifacts
build/
dist/
*.egg-info/
*.egg

# Logs
*.log

# Coverage / testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/

# Jupyter
.ipynb_checkpoints/

# Env vars
.env
.env.*

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

# OS files
.DS_Store
Thumbs.db

# Example output
examples/*.txt


# Ignore loose YAML/JSON/md files in root
*.yaml
*.yml
*.json
*.md

# Except official docs and examples
!README.md
!CHANGELOG.md
!docs/*.md
!examples/*.yaml
!examples/*.json
!examples/*.md
