| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # Python
- __pycache__/
- *.py[cod]
- *$py.class
- *.so
- .Python
- build/
- develop-eggs/
- dist/
- downloads/
- eggs/
- .eggs/
- lib/
- lib64/
- parts/
- sdist/
- var/
- wheels/
- *.egg-info/
- .installed.cfg
- *.egg
- # Virtual Environment
- venv/
- env/
- ENV/
- # IDE
- .idea/
- .vscode/
- *.swp
- *.swo
- # Testing
- .coverage
- htmlcov/
- .pytest_cache/
- .tox/
- # Logs
- *.log
- # Local configuration
- .env
- .env.local
- analysis_results/
|