| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- # 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
- # Odoo
- *.pot
- *.mo
- *.log
- # IDE
- .idea/
- .vscode/
- *.swp
- *.swo
- *~
- .DS_Store
- # Environment
- .env
- .venv
- env/
- venv/
- ENV/
- # Testing
- .pytest_cache/
- .coverage
- htmlcov/
- # Temporary files
- *.tmp
- *.bak
- *.orig
|