# ============================================================================
# Python
# ============================================================================

__pycache__/
*.py[cod]
*$py.class

# C Extensions
*.so
*.pyd
*.dll

# ============================================================================
# Virtual Environments
# ============================================================================

.venv/
venv/
env/
ENV/

# ============================================================================
# Packaging
# ============================================================================

build/
dist/
wheels/
*.egg-info/
.eggs/

pip-wheel-metadata/

# ============================================================================
# Test & Coverage
# ============================================================================

.pytest_cache/
.coverage
.coverage.*
htmlcov/

# ============================================================================
# Type Checkers / Linters
# ============================================================================

.mypy_cache/
.pyright/
.ruff_cache/
.dmypy.json

# ============================================================================
# Jupyter
# ============================================================================

.ipynb_checkpoints/

# ============================================================================
# IDEs
# ============================================================================

.vscode/
.idea/

# ============================================================================
# Operating System
# ============================================================================

.DS_Store
Thumbs.db
desktop.ini

# ============================================================================
# Logs
# ============================================================================

*.log

# ============================================================================
# Environment Variables
# ============================================================================

.env
.env.*

# ============================================================================
# Temporary Files
# ============================================================================

tmp/
temp/
*.tmp

# ============================================================================
# DataFlux Cache
# ============================================================================

.cache/
downloads/
datasets/

# ============================================================================
# Python Build Artifacts
# ============================================================================

*.manifest
*.spec

# ============================================================================
# Documentation
# ============================================================================

site/

# ============================================================================
# Misc
# ============================================================================

*.bak
*.swp
*.swo