@importlib.util.module_for_loader A decorator for importlib.abc.Loader.load_module()
runpy.run_path(file_path, init_globals=None, run_name=None) Execute the code at the named filesystem location and return the
class importlib.abc.ExecutionLoader An abstract base class which inherits from InspectLoader that, when implemented
abstractmethod get_data(path) An abstract method to return the bytes for the data located at path. Loaders that have
load_module(fullname) A legacy method for loading a module. If the module cannot be loaded,
exec_module(module) An abstract method that executes the module in its own namespace when a module is imported or reloaded.
pkgutil.iter_modules(path=None, prefix='') Yields (module_finder, name, ispkg) for all submodules on path
pkgutil.iter_importers(fullname='') Yield
pkgutil.get_data(package, resource) Get a resource from a package. This is a wrapper for the
exec_module(module) Concrete implementation of Loader.exec_module(). New
Page 10 of 15