importlib.machinery.SourceFileLoader.name
  • References/Python/Python/Importing

name The name of the module that this loader will handle.

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

class importlib.abc.FileLoader(fullname, path) An abstract base class which inherits from ResourceLoader and

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

path The path the finder will search in.

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

path Path to the file of the module.

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

importlib.machinery.BYTECODE_SUFFIXES A list of strings representing the recognized file suffixes for bytecode modules (including

2025-01-10 15:47:30
pkgutil.ImpLoader
  • References/Python/Python/Importing

class pkgutil.ImpLoader(fullname, file, filename, etc)

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

@importlib.util.set_loader A decorator for importlib.abc.Loader.load_module()

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

classmethod factory(loader) A static method which returns a callable that creates a lazy loader. This is meant to be used in

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

find_loader(fullname) A legacy method for finding a loader for the specified module.

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

is_package(fullname) Return true if path appears to be for a package.

2025-01-10 15:47:30