So what I'm looking for here is something like PHP's print_r function. This is so I can debug my scripts by seeing what's the state of the object in question.
|
|
You are really mixing together two different things. Use
Print that dictionary however fancy you like:
or
|
|||||||||||||
|
|
You want vars() mixed with pprint:
|
|||||||||||||||||||||
|
|
|||||||||||||||||||
|
|
dir has been mentioned, but that'll only give you the attributes' names. If you want their values as well try __dict__.
>>> o.__dict__ {'value': 3} |
|||
|
|
|
You can use the "dir()" function to do this.
Another useful feature is help.
|
||||
|
|
|
To print the current state of the object you might:
or
or
For your classes define
|
|||
|
|
|
In most cases, using
If you're just looking for "what attribute values does my object have?", then |
|||
|
|
|
A metaprogramming example Dump object with magic: $ cat dump.py
Without arguments: $ python dump.py
With Gnosis Utils: $ python dump.py gnosis.magic MetaXMLPickler
It is a bit outdated but still working. |
||||
|
|
|
Might be worth checking out -- Is there a Python equivalent to Perl's Data::Dumper? My recommendation is this -- https://gist.github.com/1071857 Note that perl has a module called Data::Dumper which translates object data back to perl source code (NB: it does NOT translate code back to source, and almost always you don't want to the object method functions in the output). This can be used for persistence, but the common purpose is for debugging. There are a number of things standard python pprint fails to achieve, in particular it just stops descending when it sees an instance of an object and gives you the internal hex pointer of the object (errr, that pointer is not a whole lot of use by the way). So in a nutshell, python is all about this great object oriented paradigm, but the tools you get out of the box are designed for working with something other than objects. The perl Data::Dumper allows you to control how deep you want to go, and also detects circular linked structures (that's really important). This process is fundamentally easier to achieve in perl because objects have no particular magic beyond their blessing (a universally well defined process). |
|||
|
|
|
pprint contains a “pretty printer” for producing aesthetically pleasing representations of your data structures. The formatter produces representations of data structures that can be parsed correctly by the interpreter, and are also easy for a human to read. The output is kept on a single line, if possible, and indented when split across multiple lines. |
|||
|
|