importlib.abc.FileLoader.get_data()
  • References/Python/Python/Importing

abstractmethod get_data(path) Reads path as a binary file and returns the bytes from it.

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

class importlib.machinery.PathFinder A Finder for

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

importlib.machinery.EXTENSION_SUFFIXES A list of strings representing the recognized file suffixes for extension modules.

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

exec_module(module) Initializes the given module object in accordance with

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

class importlib.abc.MetaPathFinder An abstract base class representing a meta path finder

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

loader_state

2025-01-10 15:47:30
importlib.machinery.SourcelessFileLoader.load_module()
  • References/Python/Python/Importing

load_module(name=None)

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

modulefinder.ReplacePackage(oldname, newname) Allows specifying that the module named oldname is in fact the package

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

find_module(fullname) A concrete implementation of Finder.find_module() which is equivalent to self.find

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

importlib.util.decode_source(source_bytes) Decode the given bytes representing source code and return it as a string with universal

2025-01-10 15:47:30