Given a package, how can I automatically find all its sub-packages?
|
3
|
|||||||
|
|
|
You can't rely on introspection of loaded modules, because sub-packages may not have been loaded. You'll have to look at the filesystem, assuming the top level package in question is not an egg, zip file, extension module, or loaded from memory.
|
||||||||||||
|
|
|
Inspired by James Emerton's answer:
|
||
|
