39 lines
291 B
Plaintext
39 lines
291 B
Plaintext
```
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.so
|
|
.coverage
|
|
htmlcov/
|
|
.coverage.*
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.tox/
|
|
.venv/
|
|
venv/
|
|
.env
|
|
.env.local
|
|
*.env.*
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.tmp
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
``` |