pyarrow.deserialize_components¶
- pyarrow.deserialize_components(components, SerializationContext context=None)¶
DEPRECATED: Reconstruct Python object from output of SerializedPyObject.to_components.
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).- Parameters
- components
dict
Output of SerializedPyObject.to_components
- context
SerializationContext
, defaultNone
- components
- Returns
- object
the
Python objectthat
was
originally
serialized
- object