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.abc.SourceLoader.path_stats()
  • References/Python/Python/Importing

path_stats(path) Optional abstract method which returns a

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
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.machinery.PathFinder.invalidate_caches()
  • References/Python/Python/Importing

classmethod invalidate_caches() Calls importlib.abc.PathEntryFinder.invalidate_caches() on all finders stored in

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

get_filename(fullname) Return the value __file__ would be set to if the specified module was imported. Raise

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
pkgutil.get_importer()
  • References/Python/Python/Importing

pkgutil.get_importer(path_item) Retrieve a

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

load_module(fullname) Calls super’s load_module().

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