is_package(fullname) An abstract method to return a true value if the module is a package, a false value otherwise.
importlib.import_module(name, package=None) Import a module. The name argument specifies what module to import in absolute
importlib.find_loader(name, path=None) Find the loader for a module, optionally within the specified path. If the module
class importlib.machinery.ExtensionFileLoader(fullname, path) A concrete implementation of importlib.abc.ExecutionLoader
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.__import__(name, globals=None, locals=None, fromlist=(), level=0) An implementation of the built-in
path_stats(path) Optional abstract method which returns a
report() Print a report to standard output that lists the modules imported by the script and their paths, as well as modules
class importlib.machinery.WindowsRegistryFinder Finder for modules declared in the Windows
Page 1 of 15