oxjs/tools/geo/py/fix_json.py

10 lines
198 B
Python
Raw Normal View History

2011-10-02 13:17:37 +00:00
import json
import ox
f = open('../json/countries.json')
data = json.loads(f.read())
f.close()
f = open('../json/countries.json', 'w')
f.write(json.dumps(data, indent=4, sort_keys=True))
f.close()