| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # 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
|