Is there a function in Python to print all the current properties and values of an object? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T12:47:54Zhttp://stackoverflow.com/feeds/question/192109http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a9Is there a function in Python to print all the current properties and values of an object?fuentesjr2008-10-10T16:19:27Z2009-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#1921165Answer by Joe Skora for Is there a function in Python to print all the current properties and values of an object?Joe Skora2008-10-10T16:20:40Z2008-10-10T20:05:41Z<p>You can use the "dir()" function to do this.</p>
<pre><code>>>> import sys
>>> 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']
>>>
</code></pre>
<p>Another useful feature is help.</p>
<pre><code>>>> 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#19218415Answer by Dan for Is there a function in Python to print all the current properties and values of an object?Dan2008-10-10T16:36:28Z2008-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#1922077Answer by eduffy for Is there a function in Python to print all the current properties and values of an object?eduffy2008-10-10T16:44:50Z2008-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#19236512Answer by hop for Is there a function in Python to print all the current properties and values of an object?hop2008-10-10T17:27:06Z2008-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>>>> l = dir(__builtins__)
>>> d = __builtins__.__dict__
</code></pre>
<p>Print that dictionary however fancy you like:</p>
<pre><code>>>> print l
['ArithmeticError', 'AssertionError', 'AttributeError',...
</code></pre>
<p>or</p>
<pre><code>>>> from pprint import pprint
>>> pprint(l)
['ArithmeticError',
'AssertionError',
'AttributeError',
'BaseException',
'DeprecationWarning',
...
>>> pprint(d, indent=2)
{ 'ArithmeticError': <type 'exceptions.ArithmeticError'>,
'AssertionError': <type 'exceptions.AssertionError'>,
'AttributeError': <type 'exceptions.AttributeError'>,
...
'_': [ '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#1935392Answer by Jeremy Michael Cantrell for Is there a function in Python to print all the current properties and values of an object?Jeremy Michael Cantrell2008-10-11T01:16:32Z2008-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#1938082Answer by J.F. Sebastian for Is there a function in Python to print all the current properties and values of an object?J.F. Sebastian2008-10-11T07:29:09Z2008-10-11T07:29:09Z<p>To print the current state of the object you might: </p>
<pre><code>>>> 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 "<...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#1938270Answer by J.F. Sebastian for Is there a function in Python to print all the current properties and values of an object?J.F. Sebastian2008-10-11T07:53:33Z2009-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) > 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><__main__.Data instance at 0x00A052D8>
</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><?xml version="1.0"?>
<!DOCTYPE PyObject SYSTEM "PyObjects.dtd">
<PyObject module="__main__" class="Data" id="11038416">
<attr name="lst" type="list" id="11196136" >
<item type="string" value="a" />
<item type="string" value="b" />
<item type="string" value="c" />
</attr>
<attr name="num" type="numeric" value="38" />
<attr name="str" type="string" value="spam" />
</PyObject>
</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#2050370Answer by William McVey for Is there a function in Python to print all the current properties and values of an object?William McVey2008-10-15T14:53:54Z2008-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>