Skip to main content

from_json

No overview available.

def from_json(
json_string: string
) - > any

Deserializes a JSON string into a Python object or data structure.

Parameters

NameTypeDescription
json_stringstringThe raw JSON-formatted string to be parsed into a Python object.

Returns

TypeDescription
anyThe Python representation of the JSON data, typically a dictionary, list, or scalar value.