I want to scan a module (using dir()) and extract all class names (type objects) of classes that extend a certain parent class.
Is there any way to do this without first creating instances that I can check with isinstance()?
I want to scan a module (using dir() ) and extract all class names
Share
I think you might be looking for
issubclass