class importlib.abc.Finder An abstract base class representing a finder.
exec_module(module) Implementation of Loader.exec_module().
load_module(fullname) Calls super’s load_module().
find_module(fullname, path) A legacy method for finding a loader for the specified module
abstractmethod get_filename(fullname) Returns path.
find_spec(fullname, path, target=None) An abstract method for finding a spec for the
prefix The subpath within the ZIP file where modules are searched. This is the empty string for zipimporter objects which point
exception zipimport.ZipImportError Exception raised by zipimporter objects. It’s a subclass of
classmethod find_module(fullname, path=None) A legacy wrapper around find_spec().
abstractmethod get_data(path) Reads path as a binary file and returns the bytes from it.
Page 5 of 15