bunch
bunch copied to clipboard
Pretty print
Hello,
I wonder how to pretty print Bunch objects:
import pprint
pp = pprint.PrettyPrinter(indent=4)
pp.pprint(b)
Any idea ?
Try:
import json
print json.dumps(b, indent=4)
Thanks