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

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

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

# OS
.DS_Store
Thumbs.db

# Secrets — NEVER commit credentials or tokens
credentials.json
token.json
*.credentials.json
*.token.json
.env
.env.local

# Testing
.pytest_cache/
.coverage
htmlcov/

# Ruff
.ruff_cache/
