In Python, given a module X and a class Y, how can I iterate or generate a list of all subclasses of Y that exist in module X?
|
|
Here's one way to do it:
|
||
|
|
|
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.
With those, you can reduce the whole thing to a single list comprehension if you like:
|
|||
|
|
|
quamrana, I hadn't noticed that. Unfortunately I posted the question without registering so I can't select an alternate answer. -Mark |
||
|
|
|
|
Can I suggest that neither of the answers from Chris AtLee and zacherates fulfill the requirements? I think this modification to zacerates answer is better:
The reason I disagree with the given answers is that the first does not produce classes that are a distant subclass of the given class, and the second includes the given class. |
||
|
|
|
|
Given the module foo.py
|
||
|
|
