importlib.find_loader(name, path=None) Find the loader for a module, optionally within the specified path. If the module
get_filename(fullname) Return the value __file__ would be set to if the specified module was imported. Raise
class importlib.util.LazyLoader(loader) A class which postpones the execution of the loader of a module until the module has
get_data(pathname) Return the data associated with pathname. Raise
classmethod invalidate_caches() Calls importlib.abc.PathEntryFinder.invalidate_caches() on all finders stored in
class importlib.abc.SourceLoader An abstract base class for implementing source (and optionally bytecode) file loading. The
importlib.util.module_from_spec(spec) Create a new module based on spec and spec.loader.create_module()
class importlib.machinery.FrozenImporter An importer for frozen modules. This class implements
get_code(fullname) Returns the code object for name created from path.
abstractmethod get_filename(fullname) An abstract method that is to return the value of __file__ for the specified
Page 2 of 15