#!/usr/bin/python # pprint-json.py import json import sys import pprint # http://stackoverflow.com/questions/5203105/printing-a-utf-8-encoded-string # and http ...
Lots of APIs these days return JSON objects. I love JSON, but reading a raw JSON dump can be awkward. You can print the whole thing using pprint in Python (or your favorite language), but what if you ...