importlib.
  • References/Python/Python/Importing

importlib.__import__(name, globals=None, locals=None, fromlist=(), level=0) An implementation of the built-in

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

find_loader(fullname) Attempt to find the loader to handle fullname within path.

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

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

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

report() Print a report to standard output that lists the modules imported by the script and their paths, as well as modules

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

load_module(name=None) Concrete implementation of importlib.abc.Loader.load_module() where specifying the name

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

submodule_search_locations

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

class zipimport.zipimporter(archivepath) Create a new zipimporter instance. archivepath must be a path to a ZIP file

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

class importlib.machinery.WindowsRegistryFinder Finder for modules declared in the Windows

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

is_package(fullname) An abstract method to return a true value if the module is a package, a false value otherwise.

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

importlib.import_module(name, package=None) Import a module. The name argument specifies what module to import in absolute

2025-01-10 15:47:30