pretty-print json in python (pythonic way)

后端 未结 4 1879
闹比i
闹比i 2021-01-31 01:16

I know that the pprint python standard library is for pretty-printing python data types. However, I\'m always retrieving json data, and I\'m wondering if there is a

4条回答
  •  暖寄归人
    2021-01-31 01:55

    import requests
    import json
    r = requests.get('http://server.com/api/2/....')
    pretty_json = json.loads(r.text)
    print (json.dumps(pretty_json, indent=2))
    

提交回复
热议问题