Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need a working approach of getting all classes that are inherited from the base class in Python.

Thanks.

share|improve this question
What do you mean by "the base class"? – Andrew Jaffe Oct 5 '10 at 9:19
1  
As modules that havn't been imported yet simply don't exist, there's no general-purpose way to do this. If you want to examine the ones that are, start at the inspect module. – Glenn Maynard Oct 5 '10 at 9:20
I think he means "some class". – Deniz Dogan Oct 5 '10 at 9:21
is it a particular class and can you modify it or do you want to do it for subclasses of any class? – aaronasterling Oct 5 '10 at 9:22
I need a function that takes a name of some class and returns a list of classes the specified one is the base class for. Will check the inspect module as Glenn Maynard advised. – Roman Prykhodchenko Oct 5 '10 at 9:40
show 1 more comment

2 Answers

up vote 17 down vote accepted

New-style classes have a __subclasses__ method which returns the subclasses:

class Foo(object): pass
class Bar(Foo): pass
class Baz(Foo): pass
class Bing(Bar): pass

Here are the names of the subclasses:

print([cls.__name__ for cls in vars()['Foo'].__subclasses__()])
# ['Bar', 'Baz']

Here are the subclasses themselves:

print([cls for cls in vars()['Foo'].__subclasses__()])
# [<class '__main__.Bar'>, <class '__main__.Baz'>]

Confirmation that the subclasses do indeed list Foo as their base:

for cls in vars()['Foo'].__subclasses__():
    print(cls.__base__)
# <class '__main__.Foo'>
# <class '__main__.Foo'>

Note if you want subsubclasses, you'll have to recurse:

def all_subclasses(cls):
    return cls.__subclasses__() + [g for s in cls.__subclasses__()
                                   for g in all_subclasses(s)]

print(all_subclasses(vars()['Foo']))
# [<class '__main__.Bar'>, <class '__main__.Baz'>, <class '__main__.Bing'>]
share|improve this answer
1  
Do you really need vars()['Foo'].__subclasses__()? Isn't Foo.__subclasses__() the less kludgy equivalent, or am I missing something? – Matt Luongo Sep 28 '11 at 20:30
@Matt Luongo: In the comments to the question, the OP says, "I need a function that takes a name of some class and returns a list of classes". – unutbu Sep 28 '11 at 20:53
1  
I agree with @Matt Luongo. Regardless of what the OP said in their comment, calling vars() without an argument is equivalent to locals(), so a subtlety of suggesting the use of vars()['Foo'] as shown in your answer, is that it implies that class Foo is defined in the local scope. This means that anywhere vars()['Foo'].__subclasses__() would work, Foo.__subclasses__() would, too. – martineau Aug 23 '12 at 18:01
To make it work with a class name given as a string, I would suggest instead using something like eval('Foo').__subclasses__() which would effectively do the same sequence of lookups that Python normally uses for any name: locals, globals, and then lastly among builtins. – martineau Feb 6 at 0:53

This isn't a good answer given the much better built-in __subclasses__ which @unutbu mentions, but I present it as an exercise. The subclasses() function defined returns the dictionary created which maps all the subclass names to the subclasses themselves.

def traced_subclass(baseclass):
    class _SubclassTracer(type):
        def __new__(cls, classname, bases, classdict):
            obj = type(classname, bases, classdict)
            if baseclass in bases: # sanity check
                attrname = '_%s__derived' % baseclass.__name__
                derived = getattr(baseclass, attrname, {})
                derived.update( {classname:obj} )
                setattr(baseclass, attrname, derived)
             return obj
    return _SubclassTracer

def subclasses(baseclass):
    attrname = '_%s__derived' % baseclass.__name__
    return getattr(baseclass, attrname, None)

class BaseClass(object):
    pass

class SubclassA(BaseClass):
    __metaclass__ = traced_subclass(BaseClass)

class SubclassB(BaseClass):
    __metaclass__ = traced_subclass(BaseClass)

print subclasses(BaseClass)
# {'SubclassB': <class '__main__.SubclassB'>, 'SubclassA': <class '__main__.SubclassA'>}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.