format a json in python code example
Example 1: python to json
# a Python object (dict):
x = {
"name": "John",
"age": 30,
"city": "New York"
}
# convert into JSON:
y = json.dumps(x)
Example 2: python format json file
python3 -m json.tool unformatted.json > formatted.json