from_json
No overview available.
def from_json(
json_string: string
) - > any
Deserializes a JSON string into a Python object or data structure.
Parameters
| Name | Type | Description |
|---|---|---|
| json_string | string | The raw JSON-formatted string to be parsed into a Python object. |
Returns
| Type | Description |
|---|---|
any | The Python representation of the JSON data, typically a dictionary, list, or scalar value. |