pyarrow.deserialize#
- pyarrow.deserialize(obj, SerializationContext context=None)#
DEPRECATED: Deserialize Python object from Buffer or other Python object supporting the buffer protocol.
Deprecated since version 2.0: The custom serialization functionality is deprecated in pyarrow 2.0, and will be removed in a future version. Use the standard library
pickle
or the IPC functionality of pyarrow (see Streaming, Serialization, and IPC for more).This only can interact with data produced by pyarrow.serialize or pyarrow.serialize_to.
- Parameters
- obj
pyarrow.Buffer
or Python object supporting buffer protocol - context
SerializationContext
Custom serialization and deserialization context.
- obj
- Returns
- deserializedobject