Core classes and functions, reusable in any kind of Python application.
$ pip install essentialsFeatures:
- exception classes to express common scenarios
- friendly JSON encoder, handling
datetime,date,time,UUID,bytes, built-in enums, and instances of classes implementing adict()method, like pydantic BaseModel - utilities to work with
foldersand paths StopWatchimplementation- a base class to handle classes that can be instantiated from configuration dictionaries
- common decorator to support retries
- common decorator to support logging function calls
- common decorator to control raised exceptions
- caching functions
Please refer to documentation in the project wiki: https://github.com/Neoteroi/essentials/wiki.
pip install -r requirements.txt
# run tests using automatic discovery:
pytest
# with code coverage:
make testcov