Iterate over subclasses of a given class in a given module - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T22:56:38Z http://stackoverflow.com/feeds/question/44352 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/44352/iterate-over-subclasses-of-a-given-class-in-a-given-module 4 Iterate over subclasses of a given class in a given module Mark Roddy 2008-09-04T18:05:23Z 2009-01-05T23:26:12Z <p>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?</p> http://stackoverflow.com/questions/44352/iterate-over-subclasses-of-a-given-class-in-a-given-module/44381#44381 2 Answer by Chris AtLee for Iterate over subclasses of a given class in a given module Chris AtLee 2008-09-04T18:20:21Z 2008-09-04T18:20:21Z <p>Here's one way to do it:</p> <pre><code>import inspect def get_subclasses(mod, cls): """Yield the classes in module ``mod`` that inherit from ``cls``""" for name, obj in inspect.getmembers(mod): if hasattr(obj, "__bases__") and cls in obj.__bases__: yield obj </code></pre> http://stackoverflow.com/questions/44352/iterate-over-subclasses-of-a-given-class-in-a-given-module/44403#44403 1 Answer by Aaron Maenpaa for Iterate over subclasses of a given class in a given module Aaron Maenpaa 2008-09-04T18:29:59Z 2008-09-04T18:29:59Z <p>Given the module foo.py</p> <pre><code>class foo(object): pass class bar(foo): pass class baz(foo): pass class grar(Exception): pass def find_subclasses(module, clazz): for name in dir(module): o = getattr(module, name) try: if issubclass(o, clazz): yield name, o except TypeError: pass &gt;&gt;&gt; import foo &gt;&gt;&gt; list(foo.find_subclasses(foo, foo.foo)) [('bar', &lt;class 'foo.bar'&gt;), ('baz', &lt;class 'foo.baz'&gt;), ('foo', &lt;class 'foo.foo'&gt;)] &gt;&gt;&gt; list(foo.find_subclasses(foo, object)) [('bar', &lt;class 'foo.bar'&gt;), ('baz', &lt;class 'foo.baz'&gt;), ('foo', &lt;class 'foo.foo'&gt;), ('grar', &lt;class 'foo.grar'&gt;)] &gt;&gt;&gt; list(foo.find_subclasses(foo, Exception)) [('grar', &lt;class 'foo.grar'&gt;)] </code></pre> http://stackoverflow.com/questions/44352/iterate-over-subclasses-of-a-given-class-in-a-given-module/47032#47032 4 Answer by quamrana for Iterate over subclasses of a given class in a given module quamrana 2008-09-05T22:54:42Z 2008-09-05T22:54:42Z <p>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:</p> <pre><code>def find_subclasses(module, clazz): for name in dir(module): o = getattr(module, name) try: if (o != clazz) and issubclass(o, clazz): yield name, o except TypeError: pass </code></pre> <p>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.</p> http://stackoverflow.com/questions/44352/iterate-over-subclasses-of-a-given-class-in-a-given-module/55513#55513 0 Answer by Mark Roddy for Iterate over subclasses of a given class in a given module Mark Roddy 2008-09-10T23:51:01Z 2008-09-10T23:51:01Z <p>quamrana, I hadn't noticed that. Unfortunately I posted the question without registering so I can't select an alternate answer.</p> <p>-Mark</p> http://stackoverflow.com/questions/44352/iterate-over-subclasses-of-a-given-class-in-a-given-module/408465#408465 4 Answer by runeh for Iterate over subclasses of a given class in a given module runeh 2009-01-03T01:56:21Z 2009-01-05T23:26:12Z <p>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.</p> <ol> <li>You can avoid the getattr call by using <code>inspect.getmembers()</code></li> <li>The try/catch can be avoided by using <code>inspect.isclass()</code></li> </ol> <p>With those, you can reduce the whole thing to a single list comprehension if you like:</p> <pre><code>def find_subclasses(module, clazz): return [ cls for cls in inspect.getmembers(module) if inspect.isclass(cls) and issubclass(cls, clazz) ] </code></pre>