This is a set of utilities that deliver a common functionality that I recurrently use across several projects.
pip install --upgrade git+https://github.com/rebordao/utils_py@master
.
├── LICENSE
├── Makefile
├── README.md
├── requirements.txt
├── setup.py
├── tests
│ └── __init__.py
└── utils_py
├── azure.py
├── __init__.py
├── slack_notifier.py
└── utils.py
- Do modular code.
- Use classes with high cohesion.
- Do unit tests when possible.