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.ModuleSpec.submodule_search_locations

submodule_search_locations

2016-10-07 17:34: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.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.SourceFileLoader.load_module()

load_module(name=None) Concrete implementation of importlib.abc.Loader.load_module() where specifying the name

2016-10-07 17:34:48
importlib.reload()

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

2016-10-07 17:34:51
importlib.abc.InspectLoader.is_package()

is_package(fullname) An abstract method to return a true value if the module is a package, a false value otherwise.

2016-10-07 17:34:33
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.

importlib.__import__(name, globals=None, locals=None, fromlist=(), level=0) An implementation of the built-in

2016-10-07 17:34:55
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