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

# Ambiente virtual
.venv/
venv/
env/

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

# Testes e cobertura
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
.ruff_cache/

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

# Variáveis de ambiente — NUNCA commitar o .env real
.env
!.env.example

# OS
.DS_Store
Thumbs.db
