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

importlib.find_loader(name, path=None) Find the loader for a module, optionally within the specified path. If the module

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

class importlib.machinery.ExtensionFileLoader(fullname, path) A concrete implementation of importlib.abc.ExecutionLoader

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

get_code(fullname) Returns the code object for name created from path.

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.
  • 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
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.WindowsRegistryFinder
  • References/Python/Python/Importing

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

2025-01-10 15:47:30