How can I dynamically get the set of classes from the current python module? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T23:34:30Z http://stackoverflow.com/feeds/question/326770 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/326770/how-can-i-dynamically-get-the-set-of-classes-from-the-current-python-module 4 How can I dynamically get the set of classes from the current python module? Dustin 2008-11-28T22:07:18Z 2008-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#326789 7 Answer by Igal Serban for How can I dynamically get the set of classes from the current python module? Igal Serban 2008-11-28T22:16:19Z 2008-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#326796 5 Answer by strager for How can I dynamically get the set of classes from the current python module? strager 2008-11-28T22:20:10Z 2008-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#326881 2 Answer by tatwright for How can I dynamically get the set of classes from the current python module? tatwright 2008-11-28T23:17:31Z 2008-11-28T23:17:31Z <pre> classes = [x for x in globals().values() if isinstance(x, type)] </pre>