pkgutil.iter_modules()
  • References/Python/Python/Importing

pkgutil.iter_modules(path=None, prefix='') Yields (module_finder, name, ispkg) for all submodules on path

2025-01-10 15:47:30
importlib.abc.ResourceLoader.get_data()
  • References/Python/Python/Importing

abstractmethod get_data(path) An abstract method to return the bytes for the data located at path. Loaders that have

2025-01-10 15:47:30
importlib.abc.Loader
  • References/Python/Python/Importing

class importlib.abc.Loader An abstract base class for a loader. See

2025-01-10 15:47:30
importlib.abc.SourceLoader.get_code()
  • References/Python/Python/Importing

get_code(fullname) Concrete implementation of InspectLoader.get_code().

2025-01-10 15:47:30
importlib.machinery.ExtensionFileLoader.name
  • References/Python/Python/Importing

name Name of the module the loader supports.

2025-01-10 15:47:30
importlib.abc.PathEntryFinder.find_spec()
  • References/Python/Python/Importing

find_spec(fullname, target=None) An abstract method for finding a spec for the specified

2025-01-10 15:47:30
importlib.abc.InspectLoader
  • References/Python/Python/Importing

class importlib.abc.InspectLoader An abstract base class for a loader which implements

2025-01-10 15:47:30
importlib.util.MAGIC_NUMBER
  • References/Python/Python/Importing

importlib.util.MAGIC_NUMBER The bytes which represent the bytecode version number. If you need help with loading/writing bytecode

2025-01-10 15:47:30
importlib.util.module_for_loader()
  • References/Python/Python/Importing

@importlib.util.module_for_loader A decorator for importlib.abc.Loader.load_module()

2025-01-10 15:47:30
pkgutil.iter_importers()
  • References/Python/Python/Importing

pkgutil.iter_importers(fullname='') Yield

2025-01-10 15:47:30