```
# Python cache files
__pycache__/
*.pyc
*.pyo
*.pyd

# Dependencies and build artifacts
dist/
build/
target/
node_modules/
.venv/
venv/
.env
.env.local
*.env.*

# Logs and temporary files
*.log
*.tmp
*.swp

# Editor/IDE files
.vscode/
.idea/

# Coverage reports
coverage/
htmlcov/
.coverage

# MyPy cache
.mypy_cache/

# Pytest cache
.pytest_cache/
```