Getting the class name of an instance in Python - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T02:59:48Z http://stackoverflow.com/feeds/question/510972 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/510972/getting-the-class-name-of-an-instance-in-python 6 Getting the class name of an instance in Python Dan http://stackoverflow.com/users/18909 2009-02-04T11:37:48Z 2009-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#510988 2 Answer by GHZ for Getting the class name of an instance in Python GHZ http://stackoverflow.com/users/18138 2009-02-04T11:42:31Z 2009-02-04T13:57:51Z <p>type() ?</p> <pre><code>&gt;&gt;&gt; class A(object): ... def whoami(self): ... print type(self).__name__ ... &gt;&gt;&gt; &gt;&gt;&gt; class B(A): ... pass ... &gt;&gt;&gt; &gt;&gt;&gt; &gt;&gt;&gt; o = B() &gt;&gt;&gt; o.whoami() 'B' &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/510972/getting-the-class-name-of-an-instance-in-python/511059#511059 16 Answer by sykora for Getting the class name of an instance in Python sykora http://stackoverflow.com/users/53850 2009-02-04T12:02:12Z 2009-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>&gt;&gt;&gt; import itertools &gt;&gt;&gt; x = itertools.count(0) &gt;&gt;&gt; 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#511060 6 Answer by truppo for Getting the class name of an instance in Python truppo http://stackoverflow.com/users/39991 2009-02-04T12:02:16Z 2009-02-04T12:02:16Z <p>Do you want the name of the class as a string?</p> <pre><code>instance.__class__.__name__ </code></pre>