aerosandbox.tools.python.importing ================================== .. py:module:: aerosandbox.tools.python.importing Functions --------- .. autoapisummary:: aerosandbox.tools.python.importing.lazy_import Module Contents --------------- .. py:function:: lazy_import(name) Allows you to lazily import a module. Usage: >>> asb = lazy_import("aerosandbox") # Runs instantly >>> asb.Airplane() # When this is called, ASB will be loaded. :param name: The package name Returns: The module itself, to be loaded on first use.