36 lines
307 B
Plaintext
36 lines
307 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# Tool caches
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pyright/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# Reflex generated artifacts
|
|
.web/
|
|
.states/
|
|
*.db
|
|
|
|
# IDE / OS
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
|