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
importlib.machinery.ModuleSpec.submodule_search_locations
  • References/Python/Python/Importing

submodule_search_locations

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

abstractmethod get_filename(fullname) An abstract method that is to return the value of __file__ for the specified

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

get_data(pathname) Return the data associated with pathname. Raise

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

get_source(fullname) Concrete implementation of InspectLoader.get_source().

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

get_source(fullname) Returns None as bytecode files have no source when this loader is used.

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

importlib.reload(module) Reload a previously imported module. The argument must be a module object, so it must have

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

modules A dictionary mapping module names to modules. See Example usage of ModuleFinder.

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

class importlib.abc.SourceLoader An abstract base class for implementing source (and optionally bytecode) file loading. The

2025-01-10 15:47:30