get_deserializer
Returns the Deserializer class for a given format, loading all available serializers if they have not been initialized yet.
def get_deserializer(
format: string
) - > class
Retrieves the deserializer class for a specific data format, ensuring all available serializers are loaded into the registry first.
Parameters
| Name | Type | Description |
|---|---|---|
| format | string | The identifier for the serialization format (e.g., 'json', 'xml') for which to retrieve the deserializer. |
Returns
| Type | Description |
|---|---|
class | The Deserializer class associated with the requested format, used to convert serialized data back into Python objects. |