"""A collection of serialization utilities."""fromtypingimportAnyimportpandasaspd
[docs]defserialize_dataframe(df:pd.DataFrame,/)->Any:"""Serialize a pandas dataframe."""frombaybe.searchspace.coreimportconverterreturnconverter.unstructure(df)
[docs]defdeserialize_dataframe(serialized_df:Any,/)->pd.DataFrame:"""Deserialize a pandas dataframe."""frombaybe.searchspace.coreimportconverterreturnconverter.structure(serialized_df,pd.DataFrame)