zipimport.zipimporter.find_module()

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.

doc_python
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.