json_file_operations
Functions for storing dicts to and loading dicts from json files.
load_json
load_json(path)
Load the info in the json file given by path and return as dict
Source code in src/application_settings/_private/json_file_operations.py
12 13 14 15 16 17 18 19 20 21 22 |
|
save_json
save_json(path, data)
Update the json file given by path with the data
Source code in src/application_settings/_private/json_file_operations.py
25 26 27 28 29 30 |
|