importlib.util.module_from_spec()

importlib.util.module_from_spec(spec) Create a new module based on spec and spec.loader.create_module()

2016-10-07 17:34:53
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
zipimport.zipimporter.get_data()

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

2016-10-07 17:48: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
importlib.machinery.SourcelessFileLoader.get_code()

get_code(fullname) Returns the code object for name created from path.

2016-10-07 17:34:49
importlib.machinery.FileFinder.path_hook()

classmethod path_hook(*loader_details) A class method which returns a closure for use on

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

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

2016-10-07 17:34:55
zipimport.zipimporter.get_source()

get_source(fullname) Return the source code for the specified module. Raise ZipImportError if the module couldn’t

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

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

2016-10-07 17:34:44