docs/v3/api-ref/python/prefect-serializers.mdx
prefect.serializersSerializer implementations for converting objects to bytes and bytes to objects.
All serializers are based on the Serializer class and include a type string that
allows them to be referenced without referencing the actual class. For example, you
can get often specify the JSONSerializer with the string "json". Some serializers
support additional settings for configuration of serialization. These are stored on
the instance so the same settings can be used to load saved objects.
All serializers must implement dumps and loads which convert objects to bytes and
bytes to an object respectively.
prefect_json_object_encoder <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L59" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>prefect_json_object_encoder(obj: Any) -> Any
JSONEncoder.default for encoding objects into JSON with extended type support.
Raises a TypeError to fallback on other encoders on failure.
prefect_json_object_decoder <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L83" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>prefect_json_object_decoder(result: dict[str, Any]) -> Any
JSONDecoder.object_hook for decoding objects from JSON when previously encoded
with prefect_json_object_encoder
Serializer <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L110" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>A serializer that can encode objects of type 'D' into bytes.
Methods:
dumps <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L152" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>dumps(self, obj: D) -> bytes
Encode the object into a blob of bytes.
loads <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L156" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>loads(self, blob: bytes) -> D
Decode the blob of bytes into an object.
UnknownSerializer <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L168" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>Opaque placeholder for serializers that are unavailable in the current process.
This allows persisted result metadata to be inspected without importing the custom serializer implementation. Actual serialization work still fails when attempted.
Methods:
dumps <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L184" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>dumps(self, obj: Any) -> bytes
dumps <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L152" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>dumps(self, obj: D) -> bytes
Encode the object into a blob of bytes.
loads <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L190" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>loads(self, blob: bytes) -> Any
loads <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L156" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>loads(self, blob: bytes) -> D
Decode the blob of bytes into an object.
PickleSerializer <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L197" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>Serializes objects using the pickle protocol.
cloudpickle by default. See picklelib for using alternative libraries.Methods:
check_picklelib <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L213" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>check_picklelib(cls, value: str) -> str
dumps <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L216" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>dumps(self, obj: D) -> bytes
loads <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L221" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>loads(self, blob: bytes) -> D
JSONSerializer <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L226" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>Serializes data to JSON.
Input types must be compatible with the stdlib json library.
Wraps the json library to serialize to UTF-8 bytes instead of string types.
Methods:
dumps <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L270" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>dumps(self, obj: D) -> bytes
dumps_kwargs_cannot_contain_default <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L259" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>dumps_kwargs_cannot_contain_default(cls, value: dict[str, Any]) -> dict[str, Any]
loads <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L281" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>loads(self, blob: bytes) -> D
loads_kwargs_cannot_contain_object_hook <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L265" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>loads_kwargs_cannot_contain_object_hook(cls, value: dict[str, Any]) -> dict[str, Any]
CompressedSerializer <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L289" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>Wraps another serializer, compressing its output.
Uses lzma by default. See compressionlib for using alternative libraries.
Attributes:
serializer: The serializer to use before compression.compressionlib: The import path of a compression module to use.
Must have methods compress(bytes) -> bytes and decompress(bytes) -> bytes.level: If not null, the level of compression to pass to compress.Methods:
check_compressionlib <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L311" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>check_compressionlib(cls, value: str) -> str
dumps <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L314" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>dumps(self, obj: D) -> bytes
loads <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L319" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>loads(self, blob: bytes) -> D
validate_serializer <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L307" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>validate_serializer(cls, value: Union[str, Serializer[D]]) -> Serializer[D]
CompressedPickleSerializer <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L325" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>A compressed serializer preconfigured to use the pickle serializer.
CompressedJSONSerializer <sup><a href="https://github.com/PrefectHQ/prefect/blob/main/src/prefect/serializers.py#L335" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>A compressed serializer preconfigured to use the json serializer.