importlib.find_loader()

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

2016-10-07 17:34:40
importlib.machinery.FrozenImporter

class importlib.machinery.FrozenImporter An importer for frozen modules. This class implements

2016-10-07 17:34:45
importlib.abc.SourceLoader

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

2016-10-07 17:34:37
importlib.machinery.ModuleSpec.submodule_search_locations

submodule_search_locations

2016-10-07 17:34:46
zipimport.zipimporter.get_filename()

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

2016-10-07 17:48:46
zipimport.zipimporter

class zipimport.zipimporter(archivepath) Create a new zipimporter instance. archivepath must be a path to a ZIP file

2016-10-07 17:48:45
importlib.machinery.ExtensionFileLoader

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

2016-10-07 17:34:41
importlib.import_module()

importlib.import_module(name, package=None) Import a module. The name argument specifies what module to import in absolute

2016-10-07 17:34:40
importlib.machinery.PathFinder.invalidate_caches()

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

2016-10-07 17:34:48
importlib.machinery.FileFinder.find_loader()

find_loader(fullname) Attempt to find the loader to handle fullname within path.

2016-10-07 17:34:44