PEP 810 – Explicit lazy imports | peps.python.org

This PEP introduces lazy imports as an explicit language feature. Currently, a module is eagerly loaded at the point of the import statement. Lazy imports defer the loading and execution of a module until the first time the imported name is used.

Python Enhancement Proposals (PEPs)