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.

How do I find out a name of class that created an instance of an object in Python if the function I am doing this from is the base class of which the class of the instance has been derived?

Was thinking maybe the inspects module might have helped me out here, but it doesn't seem to give me what I want and short of parsing the __class__ member, I'm not sure how to get at this information.

Thanks Dan

share|improve this question
What exactly are you 'parsing' from the class variable? – sykora Feb 4 '09 at 11:49
the top-level name of the class that the instance belongs to (without module name, etc...) – Dan Feb 4 '09 at 11:50
That's not the class (which is an object itself), but the name of the class. Please correct your question title. – Torsten Marek Feb 4 '09 at 12:05

5 Answers

up vote 296 down vote accepted

Have you tried the __name__ attribute of the class? ie x.__class__.__name__ will give you the name of the class, which I think is what you want.

>>> import itertools
>>> x = itertools.count(0)
>>> x.__class__.__name__
'count'

It should work similarly from wherever you call it.

share|improve this answer
12  
You're a wizard, Harry. Thanks for this. – Jordan Jul 7 '12 at 7:05
1  
Amazingly simple. Wonder why dir(x.__class__) does not list it? – cfi Jan 21 at 10:40
1  
Why use __class__ over the type method? Like so: type(x).__name__. Isn't calling double underscore members directly discouraged? I can't see a way around using __name__, though. – jpmc26 Mar 7 at 20:41

Do you want the name of the class as a string?

instance.__class__.__name__
share|improve this answer

type() ?

>>> class A(object):
...    def whoami(self):
...       print type(self).__name__
...
>>>
>>> class B(A):
...    pass
...
>>>
>>>
>>> o = B()
>>> o.whoami()
'B'
>>>
share|improve this answer
this is the same as the class member, but i have to parse this result by hand, which is a bit annoying... – Dan Feb 4 '09 at 11:47
2  
I like this one. This way, it is possible in a base class to get the name of the subclass. – joctee Jun 4 '12 at 11:43
1  
or self.__class__.__name__ instead of type(self).__name__ to get the same behaviour. Unless there is something the type() function does that I am not aware of? – andreb Aug 20 '12 at 21:47

Good question.

Here's a simple example based on GHZ's which might help someone:

>>> class person(object):
        def init(self,name):
            self.name=name
        def info(self)
            print "My name is {0}, I am a {1}".format(self.name,self.__class__.__name__)
>>> bob = person(name='Robert')
>>> bob.info()
My name is Robert, I am a person
share|improve this answer
type(instance).__name__ != instance.__class__.__name  #if class A is defined like
class A():
   ...

type(instance) == instance.__class__                  #if class A is defined like
class A(object):
  ...

Example:

>>> class aclass(object):
...   pass
...
>>> a = aclass()
>>> type(a)
<class '__main__.aclass'>
>>> a.__class__
<class '__main__.aclass'>
>>>
>>> type(a).__name__
'aclass'
>>>
>>> a.__class__.__name__
'aclass'
>>>


>>> class bclass():
...   pass
...
>>> b = bclass()
>>>
>>> type(b)
<type 'instance'>
>>> b.__class__
<class __main__.bclass at 0xb765047c>
>>> type(b).__name__
'instance'
>>>
>>> b.__class__.__name__
'bclass'
>>>
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.