get_code(fullname) Returns the code object for name created from path.
is_package(fullname) An abstract method to return a true value if the module is a package, a false value otherwise.
classmethod invalidate_caches() Calls importlib.abc.PathEntryFinder.invalidate_caches() on all finders stored in
importlib.__import__(name, globals=None, locals=None, fromlist=(), level=0) An implementation of the built-in
get_source(fullname) Returns None as bytecode files have no source when this loader is used.
get_source(fullname) Concrete implementation of InspectLoader.get_source().
modules A dictionary mapping module names to modules. See Example usage of ModuleFinder.
find_loader(fullname) Attempt to find the loader to handle fullname within path.
class importlib.util.LazyLoader(loader) A class which postpones the execution of the loader of a module until the module has
importlib.reload(module) Reload a previously imported module. The argument must be a module object, so it must have
Page 1 of 15