get_source(fullname) Return the source code for the specified module. Raise ZipImportError if the module couldn’t
importlib.find_loader(name, path=None) Find the loader for a module, optionally within the specified path. If the module
classmethod path_hook(*loader_details) A class method which returns a closure for use on
class zipimport.zipimporter(archivepath) Create a new zipimporter instance. archivepath must be a path to a ZIP file
class importlib.util.LazyLoader(loader) A class which postpones the execution of the loader of a module until the module has
get_code(fullname) Returns the code object for name created from path.
load_module(name=None) Concrete implementation of importlib.abc.Loader.load_module() where specifying the name
importlib.util.module_from_spec(spec) Create a new module based on spec and spec.loader.create_module()
class importlib.machinery.ExtensionFileLoader(fullname, path) A concrete implementation of importlib.abc.ExecutionLoader
class importlib.machinery.FrozenImporter An importer for frozen modules. This class implements
Page 2 of 15