json
Module to interact with json strings.
This module contains functions to convert dicts to json strings and json strings to dicts.
Typical usage example:`
```python
dictionary = load_json(json_string)
```
load_json ¶
Loads dictionary from json string.
Parameters:
-
json_string
(str
) –json string to load.
Returns:
-
Dict
–Dictionary containing content of json string.