Search Results
Article: Pretty Print JSON With Python
… "foo": 1 } ] } You can also use this technique for testing scripts or curl requests, in fact anything that produces JSON output can be piped … a web service that produces JSON then you can test this using direct curl commands, which you can then pipe through json.tool to view the output. curl -s http://localhost/service | python -m json.tool What normally …