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

link|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
feedback

4 Answers

up vote 134 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.

link|improve this answer
feedback

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

instance.__class__.__name__
link|improve this answer
feedback

type() ?

>>> class A(object):
...    def whoami(self):
...       print type(self).__name__
...
>>>
>>> class B(A):
...    pass
...
>>>
>>>
>>> o = B()
>>> o.whoami()
'B'
>>>
link|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
feedback

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
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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