pkgutil.iter_modules

pkgutil.iter_modules(path=None, prefix='')

Yields (module_loader, name, ispkg) for all submodules on path, or, if path is None, all top-level modules on sys.path.

‘path’ should be either None or a list of paths to look for modules in.

‘prefix’ is a string to output on the front of every module name on output.

Navigation