Getting the class name of an instance in Python - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T02:59:48Zhttp://stackoverflow.com/feeds/question/510972http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/510972/getting-the-class-name-of-an-instance-in-python6Getting the class name of an instance in PythonDanhttp://stackoverflow.com/users/189092009-02-04T11:37:48Z2009-06-05T07:15:28Z
<p>Hi,</p>
<p>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?</p>
<p>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 <code>__class__</code> member, I'm not sure how to get at this information.</p>
<p>Thanks
Dan</p>
http://stackoverflow.com/questions/510972/getting-the-class-name-of-an-instance-in-python/510988#5109882Answer by GHZ for Getting the class name of an instance in PythonGHZhttp://stackoverflow.com/users/181382009-02-04T11:42:31Z2009-02-04T13:57:51Z<p>type() ?</p>
<pre><code>>>> class A(object):
... def whoami(self):
... print type(self).__name__
...
>>>
>>> class B(A):
... pass
...
>>>
>>>
>>> o = B()
>>> o.whoami()
'B'
>>>
</code></pre>
http://stackoverflow.com/questions/510972/getting-the-class-name-of-an-instance-in-python/511059#51105916Answer by sykora for Getting the class name of an instance in Pythonsykorahttp://stackoverflow.com/users/538502009-02-04T12:02:12Z2009-02-04T12:02:12Z<p>Have you tried the <code>__name__</code> attribute of the class? ie <code>x.__class__.__name__</code> will give you the name of the class, which I think is what you want.</p>
<pre><code>>>> import itertools
>>> x = itertools.count(0)
>>> x.__class__.__name__
'count'
</code></pre>
<p>It should work similarly from wherever you call it.</p>
http://stackoverflow.com/questions/510972/getting-the-class-name-of-an-instance-in-python/511060#5110606Answer by truppo for Getting the class name of an instance in Pythontruppohttp://stackoverflow.com/users/399912009-02-04T12:02:16Z2009-02-04T12:02:16Z<p>Do you want the name of the class as a string?</p>
<pre><code>instance.__class__.__name__
</code></pre>