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
class importlib.util.LazyLoader(loader) A class which postpones the execution of the loader of a module until the module has
classmethod path_hook(*loader_details) A class method which returns a closure for use on
importlib.__import__(name, globals=None, locals=None, fromlist=(), level=0) An implementation of the built-in
importlib.reload(module) Reload a previously imported module. The argument must be a module object, so it must have
importlib.import_module(name, package=None) Import a module. The name argument specifies what module to import in absolute
submodule_search_locations
get_source(fullname) Return the source code for the specified module. Raise ZipImportError if the module couldn’t
get_filename(fullname) Return the value __file__ would be set to if the specified module was imported. Raise
Page 1 of 15