importlib.__import__(name, globals=None, locals=None, fromlist=(), level=0) An implementation of the built-in
find_loader(fullname) Attempt to find the loader to handle fullname within path.
get_source(fullname) Return the source code for the specified module. Raise ZipImportError if the module couldn’t
report() Print a report to standard output that lists the modules imported by the script and their paths, as well as modules
load_module(name=None) Concrete implementation of importlib.abc.Loader.load_module() where specifying the name
submodule_search_locations
class zipimport.zipimporter(archivepath) Create a new zipimporter instance. archivepath must be a path to a ZIP file
class importlib.machinery.WindowsRegistryFinder Finder for modules declared in the Windows
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
Page 1 of 15