| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # Python caches
- __pycache__
- *.pyc
- *.pyo
- *.pyd
- # VCS
- .git
- .gitignore
- # Virtual envs
- .venv
- venv
- env
- # Byte-compiled / optimized / DLL files
- .mypy_cache
- .pytest_cache
- .ruff_cache
- # OS files
- .DS_Store
- Thumbs.db
- # Build artifacts
- build
- dist
- *.egg-info
- # Data/logs/outputs
- logs
- output
- data
- # Local configs
- .env
- *.local
- *.secret
- *.secrets
- *.bak
- # IDE
- .vscode
- .idea
|