zipimport.ZipImportError
  • References/Python/Python/Importing

exception zipimport.ZipImportError Exception raised by zipimporter objects. It’s a subclass of

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

load_module(fullname) Implementation of Loader.load_module().

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

parent

2025-01-10 15:47:30
zipimport.zipimporter.get_code()
  • References/Python/Python/Importing

get_code(fullname) Return the code object for the specified module. Raise ZipImportError if the module couldn’t

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

module_repr(module) A legacy method which when implemented calculates and returns the given module’s repr, as a string. The

2025-01-10 15:47:30
zipimport.zipimporter.load_module()
  • References/Python/Python/Importing

load_module(fullname) Load the module specified by fullname. fullname must be the fully qualified (dotted)

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

abstractmethod get_filename(fullname) Returns path.

2025-01-10 15:47:30
zipimport.zipimporter.prefix
  • References/Python/Python/Importing

prefix The subpath within the ZIP file where modules are searched. This is the empty string for zipimporter objects which point

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

find_module(fullname, path) A legacy method for finding a loader for the specified module

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

runpy.run_module(mod_name, init_globals=None, run_name=None, alter_sys=False) Execute the code of the specified module and return

2025-01-10 15:47:30