Repo for non destructive e-scooter intervention materials
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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))
|
|
|
|
|