Hacker News new | ask | show | jobs
by rbonvall 233 days ago
Python also pretty-prints out of the box:

    $ echo '{ "hello": "world" }' | python3 -m json.tool
    {
        "hello": "world"
    }