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.
KED/env/python/parser/parser.py

10 lines
238 B

import json
with open('config.json', 'r') as config_file:
config_data = json.load(config_file)
# print(config_data)
# print(json.dumps(config_data, indent=4))
print(json.dumps(config_data, indent=4, sort_keys=True))