Read json
read_json_file(path_to_file)
Read a json file from a given path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path_to_file |
str
|
path to json file |
required |
Returns:
| Type | Description |
|---|---|
dict
|
A dict with json data |
Source code in johnson/read_json.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |