Answers for "python format a json output to only show numbers"

1

response.json results in pretty data python

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))
Posted by: Guest on April-03-2020
3

python format json file

python3 -m json.tool unformatted.json > formatted.json
Posted by: Guest on June-09-2020

Code answers related to "python format a json output to only show numbers"

Code answers related to "Javascript"

Browse Popular Code Answers by Language