find_module(fullname[, path])
Search for a module specified by fullname. fullname must be the fully qualified (dotted) module name. It returns the zipimporter instance itself if the module was found, or None
if it wasn’t. The optional path argument is ignored—it’s there for compatibility with the importer protocol.
Please login to continue.