show/hide this revision's text 2 Fixed bug. Forgot to actually use getmembers()

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.

  1. You can avoid the getattr call by using inspect.getmembers()
  2. 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) ]
show/hide this revision's text 1

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.

  1. You can avoid the getattr call by using inspect.getmembers()
  2. 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 if inspect.isclass(cls) and
                                      issubclass(cls, clazz) ]