vote up 3 vote down star
1

Hi,

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

flag

76% accept rate
What exactly are you 'parsing' from the class variable? – sykora Feb 4 at 11:49
the top-level name of the class that the instance belongs to (without module name, etc...) – Dan Feb 4 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 at 12:05

3 Answers

vote up 8 vote down check

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|flag
vote up 3 vote down

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

instance.__class__.__name__
link|flag
vote up 1 vote down

type() ?

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

Your Answer

Get an OpenID
or

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