How can I dynamically get the set of classes from the current python module? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T23:34:30Zhttp://stackoverflow.com/feeds/question/326770http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/326770/how-can-i-dynamically-get-the-set-of-classes-from-the-current-python-module4How can I dynamically get the set of classes from the current python module?Dustin2008-11-28T22:07:18Z2008-11-28T23:17:31Z
<p>I have a python module that defines a number of classes:</p>
<pre><code>class A(object):
def __call__(self):
print "ran a"
class B(object):
def __call__(self):
print "ran b"
class C(object):
def __call__(self):
print "ran c"
</code></pre>
<p>From within the module, how might I add an attribute that gives me all of the classes?</p>
<p>dir() gives me the names of everything from within my module, but I can't seem to figure out how to go from the name of a class to the class itself from <em>within</em> the module.</p>
<p>From outside of the module, I can simply use <code>getattr(mod, 'A')</code>, but I don't have a <code>self</code> kind of module from within the module itself.</p>
<p>This seems pretty obvious. Can someone tell me what I'm missing?</p>
http://stackoverflow.com/questions/326770/how-can-i-dynamically-get-the-set-of-classes-from-the-current-python-module/326789#3267897Answer by Igal Serban for How can I dynamically get the set of classes from the current python module?Igal Serban2008-11-28T22:16:19Z2008-11-28T22:16:19Z<pre><code>import sys
getattr(sys.modules[__name__], 'A')
</code></pre>
http://stackoverflow.com/questions/326770/how-can-i-dynamically-get-the-set-of-classes-from-the-current-python-module/326796#3267965Answer by strager for How can I dynamically get the set of classes from the current python module?strager2008-11-28T22:20:10Z2008-11-28T22:20:10Z<p>You can smash this into one for statement, but that'd have messy code duplication.</p>
<pre><code>import sys
import types
this_module = sys.modules[__name__]
[x for x in
[getattr(this_module, x) for x in dir(this_module)]
if type(x) == types.ClassType]
</code></pre>
http://stackoverflow.com/questions/326770/how-can-i-dynamically-get-the-set-of-classes-from-the-current-python-module/326881#3268812Answer by tatwright for How can I dynamically get the set of classes from the current python module?tatwright2008-11-28T23:17:31Z2008-11-28T23:17:31Z<pre>
classes = [x for x in globals().values() if isinstance(x, type)]
</pre>