how to add new category to json file in python code example
Example: 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))