Is there a function in Python to print all the current properties and values of an object? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T12:47:54Z http://stackoverflow.com/feeds/question/192109 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a 9 Is there a function in Python to print all the current properties and values of an object? fuentesjr 2008-10-10T16:19:27Z 2009-06-05T07:12:53Z <p>So what I'm looking for here is something like <a href="http://us2.php.net/print_r" rel="nofollow">PHP's print_r</a> function. This is so I can debug my scripts by seeing what's the state of the object in question.</p> http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a/192116#192116 5 Answer by Joe Skora for Is there a function in Python to print all the current properties and values of an object? Joe Skora 2008-10-10T16:20:40Z 2008-10-10T20:05:41Z <p>You can use the "dir()" function to do this.</p> <pre><code>&gt;&gt;&gt; import sys &gt;&gt;&gt; dir(sys) ['__displayhook__', '__doc__', '__excepthook__', '__name__', '__stderr__', '__stdin__', '__stdo t__', '_current_frames', '_getframe', 'api_version', 'argv', 'builtin_module_names', 'byteorder , 'call_tracing', 'callstats', 'copyright', 'displayhook', 'dllhandle', 'exc_clear', 'exc_info' 'exc_type', 'excepthook', 'exec_prefix', 'executable', 'exit', 'getcheckinterval', 'getdefault ncoding', 'getfilesystemencoding', 'getrecursionlimit', 'getrefcount', 'getwindowsversion', 'he version', 'maxint', 'maxunicode', 'meta_path', 'modules', 'path', 'path_hooks', 'path_importer_ ache', 'platform', 'prefix', 'ps1', 'ps2', 'setcheckinterval', 'setprofile', 'setrecursionlimit , 'settrace', 'stderr', 'stdin', 'stdout', 'subversion', 'version', 'version_info', 'warnoption ', 'winver'] &gt;&gt;&gt; </code></pre> <p>Another useful feature is help.</p> <pre><code>&gt;&gt;&gt; help(sys) Help on built-in module sys: NAME sys FILE (built-in) MODULE DOCS http://www.python.org/doc/current/lib/module-sys.html DESCRIPTION This module provides access to some objects used or maintained by the interpreter and to functions that interact strongly with the interpreter. Dynamic objects: argv -- command line arguments; argv[0] is the script pathname if known </code></pre> http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a/192184#192184 15 Answer by Dan for Is there a function in Python to print all the current properties and values of an object? Dan 2008-10-10T16:36:28Z 2008-10-10T16:36:28Z <pre><code>def dump(obj): for attr in dir(obj): print "obj.%s = %s" % (attr, getattr(obj, attr)) </code></pre> http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a/192207#192207 7 Answer by eduffy for Is there a function in Python to print all the current properties and values of an object? eduffy 2008-10-10T16:44:50Z 2008-10-10T16:44:50Z <p><em>dir</em> has been mentioned, but that'll only give you the attributes' names. If you want their values as well try __dict__.</p> <pre><code>class O: def __init__ (self): self.value = 3 o = O() </code></pre> <p>>>> o.__dict__</p> <p>{'value': 3}</p> http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a/192365#192365 12 Answer by hop for Is there a function in Python to print all the current properties and values of an object? hop 2008-10-10T17:27:06Z 2008-10-13T11:31:52Z <p>You are really mixing together two different things.</p> <p>Use <code>dir()</code> or the <code>inspect</code> module to get what you are interested in (I use <code>__builtins__</code> as an example; you can use any object instead).</p> <pre><code>&gt;&gt;&gt; l = dir(__builtins__) &gt;&gt;&gt; d = __builtins__.__dict__ </code></pre> <p>Print that dictionary however fancy you like:</p> <pre><code>&gt;&gt;&gt; print l ['ArithmeticError', 'AssertionError', 'AttributeError',... </code></pre> <p>or</p> <pre><code>&gt;&gt;&gt; from pprint import pprint &gt;&gt;&gt; pprint(l) ['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'DeprecationWarning', ... &gt;&gt;&gt; pprint(d, indent=2) { 'ArithmeticError': &lt;type 'exceptions.ArithmeticError'&gt;, 'AssertionError': &lt;type 'exceptions.AssertionError'&gt;, 'AttributeError': &lt;type 'exceptions.AttributeError'&gt;, ... '_': [ 'ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'DeprecationWarning', ... </code></pre> http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a/193539#193539 2 Answer by Jeremy Michael Cantrell for Is there a function in Python to print all the current properties and values of an object? Jeremy Michael Cantrell 2008-10-11T01:16:32Z 2008-10-11T01:16:32Z <p>You want vars():</p> <pre><code>print vars(your_object) </code></pre> http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a/193808#193808 2 Answer by J.F. Sebastian for Is there a function in Python to print all the current properties and values of an object? J.F. Sebastian 2008-10-11T07:29:09Z 2008-10-11T07:29:09Z <p>To print the current state of the object you might: </p> <pre><code>&gt;&gt;&gt; obj # in an interpreter </code></pre> <p>or </p> <pre><code>print repr(obj) # in a script </code></pre> <p>or</p> <pre><code>print obj </code></pre> <p>For your classes define <code>__str__</code> or <code>__repr__</code> methods. From the <a href="http://www.python.org/doc/2.5.2/ref/customization.html" rel="nofollow">Python documentation</a>:</p> <blockquote> <p><code>__repr__(self)</code> Called by the <code>repr()</code> built-in function and by string conversions (reverse quotes) to compute the "official" string representation of an object. If at all possible, this should look like a valid Python expression that could be used to recreate an object with the same value (given an appropriate environment). If this is not possible, a string of the form "&lt;...some useful description...>" should be returned. The return value must be a string object. If a class defines <strong>repr</strong>() but not <code>__str__()</code>, then <code>__repr__()</code> is also used when an "informal" string representation of instances of that class is required. This is typically used for debugging, so it is important that the representation is information-rich and unambiguous.</p> <p><code>__str__(self)</code> Called by the <code>str()</code> built-in function and by the print statement to compute the "informal" string representation of an object. This differs from <code>__repr__()</code> in that it does not have to be a valid Python expression: a more convenient or concise representation may be used instead. The return value must be a string object.</p> </blockquote> http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a/193827#193827 0 Answer by J.F. Sebastian for Is there a function in Python to print all the current properties and values of an object? J.F. Sebastian 2008-10-11T07:53:33Z 2009-03-28T15:43:33Z <p>A metaprogramming example <a href="http://www.ibm.com/developerworks/linux/library/l-pymeta.html" rel="nofollow">Dump object with magic</a>:</p> <pre> $ cat dump.py </pre> <pre><code>#!/usr/bin/python import sys if len(sys.argv) &gt; 2: module, metaklass = sys.argv[1:3] m = __import__(module, globals(), locals(), [metaklass]) __metaclass__ = getattr(m, metaklass) class Data: def __init__(self): self.num = 38 self.lst = ['a','b','c'] self.str = 'spam' dumps = lambda self: repr(self) __str__ = lambda self: self.dumps() data = Data() print data </code></pre> <p>Without arguments:</p> <pre> $ python dump.py </pre> <pre><code>&lt;__main__.Data instance at 0x00A052D8&gt; </code></pre> <p>With <a href="http://www.gnosis.cx/download/Gnosis%5FUtils.More/" rel="nofollow">Gnosis Utils</a>:</p> <pre> $ python dump.py gnosis.magic MetaXMLPickler </pre> <pre><code>&lt;?xml version="1.0"?&gt; &lt;!DOCTYPE PyObject SYSTEM "PyObjects.dtd"&gt; &lt;PyObject module="__main__" class="Data" id="11038416"&gt; &lt;attr name="lst" type="list" id="11196136" &gt; &lt;item type="string" value="a" /&gt; &lt;item type="string" value="b" /&gt; &lt;item type="string" value="c" /&gt; &lt;/attr&gt; &lt;attr name="num" type="numeric" value="38" /&gt; &lt;attr name="str" type="string" value="spam" /&gt; &lt;/PyObject&gt; </code></pre> <p>It is a bit outdated but still working.</p> http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a/205037#205037 0 Answer by William McVey for Is there a function in Python to print all the current properties and values of an object? William McVey 2008-10-15T14:53:54Z 2008-10-15T14:53:54Z <p>In most cases, using <code>__dict__</code> or <code>dir()</code> will get you the info you're wanting. If you should happen to need more details, the standard library includes the <code>inspect</code> module, which allows you to get some impressive amount of detail. Some of the real nuggests of info include:</p> <ul> <li>names of function and method parameters</li> <li>class hierarchies</li> <li>source code of the implementation of a functions/class objects</li> <li>local variables out of a frame object</li> </ul> <p>If you're just looking for "what attribute values does my object have?", then <code>dir()</code> and <code>__dict__</code> are probably sufficient. If you're really looking to dig into the current state of arbitrary objects (keeping in mind that in python almost everything is an object), then <code>inspect</code> is worthy of consideration.</p>