Although Quamrana's suggestion works fine, there are a couple of possible improvements I'd like to suggest to make it more pythonic. They rely on using the inspect module from the standard library.
- You can avoid the getattr call by using
inspect.getmembers() - The try/catch can be avoided by using
inspect.isclass()
With those, you can reduce the whole thing to a single list comprehension if you like:
def find_subclasses(module, clazz):
return [ cls for cls in module inspect.getmembers(module) if inspect.isclass(cls) and
issubclass(cls, clazz) ]
