importlib.abc.Finder.find_module()
  • References/Python/Python/Importing

abstractmethod find_module(fullname, path=None) An abstact method for finding a loader

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

class importlib.machinery.PathFinder A Finder for

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

find_module(fullname) A concrete implementation of Finder.find_module() which is equivalent to self.find

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

importlib.machinery.EXTENSION_SUFFIXES A list of strings representing the recognized file suffixes for extension modules.

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

name

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

pkgutil.extend_path(path, name) Extend the search path for the modules which comprise a package. Intended use is to place the

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

get_filename(fullname) Returns path. New

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

class importlib.abc.MetaPathFinder An abstract base class representing a meta path finder

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

importlib.util.decode_source(source_bytes) Decode the given bytes representing source code and return it as a string with universal

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

is_package(fullname) Return True if the module specified by fullname is a package. Raise ZipImportError

2025-01-10 15:47:30