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.
|
feedback
|
|
You are really mixing together two different things. Use
Print that dictionary however fancy you like:
or
| ||||
|
feedback
|
|
You want vars() mixed with pprint:
| |||||
feedback
|
| |||||||||||||||||
feedback
|
|
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} | |||
|
feedback
|
|
You can use the "dir()" function to do this.
Another useful feature is help.
| ||||
|
feedback
|
|
To print the current state of the object you might:
or
or
For your classes define
| |||
|
feedback
|
|
In most cases, using
If you're just looking for "what attribute values does my object have?", then | |||
|
feedback
|
|
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. | ||||
|
feedback
|
|
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. | |||
|
feedback
|