ExportToFunction
Index
Methods
Methods
__call__
Call dunder method.
Parameters
optionalkeyword-onlydataset_id: str | None = None
The ID of the
Dataset
to export data from.optionalkeyword-onlydataset_name: str | None = None
The name of the
Dataset
to export data from.keyword-onlykey: Required[str]
The key under which to save the data.
keyword-onlycontent_type: Literal[json, csv]
The format in which to export the data. Either 'json' or 'csv'.
keyword-onlyto_key_value_store_id: str
ID of the key-value store to save the exported file.
keyword-onlyto_key_value_store_name: str
Name of the key-value store to save the exported file.
Returns Coroutine[None, None, None]
A function for exporting data from a
Dataset
.It simplifies the process of exporting data from a
Dataset
. It opens the specified one and exports its content to aKeyValueStore
.