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

# Dependencies
.venv/
venv/
.env
.env.local
*.env.*

# Build directories
dist/
build/
target/

# Python specific
*.pyc
__pycache__/
*.pyo
*.pyd
.Python
*.so
.Python
*.egg-info/
.eggs/

# Logs
*.log

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

# Coverage
.coverage
coverage/
htmlcov/

# OS
.DS_Store
Thumbs.db

# Cache
.mypy_cache/
.pytest_cache/
```