Metadata-Version: 2.1
Name: yall
Version: 0.0.2
Summary: Yet Another Lazy Loader for Python
Home-page: https://github.com/mingulov/yall
Author: Denis Mingulov
Author-email: denis@mingulov.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Description-Content-Type: text/markdown

# yall
Yet Another Lazy Loader for Python

    import yall
    yall.lazy_import('something') # instead of import something
    mod = yall.lazy_import('bbb.ccc') # instead of from bbb import ccc as mod

Based on internal importlib.util.LazyLoader and supports just Python 3.4 and newer.

