What's Changed
* Test coverage fix by eadwinCode in https://github.com/python-ellar/ellar/pull/144
* Feat: Lazy Object by eadwinCode in https://github.com/python-ellar/ellar/pull/146
python
main.py
from ellar.common.utils.functional import SimpleLazyObject, LazyStrImport
class PythonWebFramework:
def __init__(self) -> None:
self.name = 'Ellar'
def _get_lazy_instance() -> PythonWebFramework:
return PythonWebFramework()
lazy_python_framework = SimpleLazyObject(_get_lazy_instance)
lazy_python_framework_type_import = LazyStrImport("main:PythonWebFramework")
assert lazy_python_framework.name == "Ellar"
assert lazy_python_framework_type_import().name == "Ellar"
**Full Changelog**: https://github.com/python-ellar/ellar/compare/0.5.6...0.5.7