Description# This SPEC recommends a lazy loading mechanism—targeted at libraries—that avoids import slowdowns and provides explicit submodule exports. For example, it allows the following behavior: import skimage as ski # cheap operation; does not load submodules ski.filters # cheap operation; loads the filters submodule, but not # any of its submodules or functions ski.filters.gaussian(...) # loads the file in which gaussian is implemented # and calls that function This has several advan...| scientific-python.org
PEP 484 introduced type hinting to Python, with goals of making typing gradual and easy to adopt. Currently, typing information must be distributed manually. This PEP provides a standardized means to leverage existing tooling to package and distribute t...| Python Enhancement Proposals (PEPs)
Stub files¶| mypy.readthedocs.io
Using installed packages¶| mypy.readthedocs.io