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

# Virtual environments
.env
.venv/
env/
venv/
ENV/

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

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

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

# Type checking
.mypy_cache/
.pytype/
.pyright/

# Linting
.ruff_cache/

# OS
.DS_Store
Thumbs.db
