```
# Compiled and build artifacts
*.pyc
__pycache__/
*.o
*.obj

# Dependencies
venv/
.venv/
node_modules/
*.egg-info/
dist/
build/
*.so
*.dylib
*.dll

# Logs and temp files
*.log
*.tmp
*.swp
*.swo

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

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

# Coverage
.coverage
coverage/
htmlcov/

# OS
.DS_Store
Thumbs.db

# Testing
.pytest_cache/
.mypy_cache/
```