opencoil-paracity/website/jsonreader.py
Anton Linus 666b5e6b06 update
2020-09-02 22:48:59 +02:00

9 lines
168 B
Python

import json
import pprint
with open('1scooter.json') as file:
data = json.load(file)
print(json.dumps(data['data']['attributes']['lat'], indent=4, sort_keys=True))