abstractmethod get_filename(fullname) An abstract method that is to return the value of __file__ for the specified
find_loader(fullname) Attempt to find the loader to handle fullname within path.
get_source(fullname) Returns None as bytecode files have no source when this loader is used.
get_code(fullname) Returns the code object for name created from path.
class importlib.machinery.WindowsRegistryFinder Finder for modules declared in the Windows
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
importlib.import_module(name, package=None) Import a module. The name argument specifies what module to import in absolute
get_source(fullname) Concrete implementation of InspectLoader.get_source().
path_stats(path) Optional abstract method which returns a
Page 2 of 15