Data Sets
s.data.append_to_data_set(
uuid: Optional[str], name: Optional[str],
data: Union[List[Dict], DataFrame]
) -> str
s.data.delete_data_set(uuid: Optional[str], name: Optional[str])
s.data.replace_data_from_data_set(
uuid: Optional[str], name: Optional[str]
data: Union[List[Dict], DataFrame],
):
s.data.get_data_from_data_set(
uuid: Optional[str], name: Optional[str],
limit: Optional[int]
) -> List[Dict]s.reuse_data_sets() # to tell the SDK that the data sets won't change
s.update_data_sets() # to tell the SDK that the data has cahnged
Last updated
Was this helpful?