ExportService.

get_raw_export_bytes

get_raw_export_bytes(workspace_id: str, export_id: str, timeout: float, retry: float, max_retry: float) -> bytes

Poll the raw export endpoint for an already-submitted export and return its bytes.

Low-level building block: the caller is responsible for submitting the export request (via ``actions_api.create_raw_export``) and passing the resulting ``export_id`` here. The returned bytes reflect whatever format was requested at creation time (``ARROW_FILE``, ``ARROW_STREAM``, or ``CSV``).

Parameters

nametypedescription
workspace_idstrThe ID of the target workspace.
export_idstrExport ID returned by ``create_raw_export``.
timeoutfloatTotal seconds to wait for the export to complete. Defaults to 60.0.
retryfloatInitial wait between retries in seconds. Defaults to 0.2.
max_retryfloatMaximum wait between retries in seconds. Defaults to 5.0.

Returns

typedescription
bytesRaw export bytes in the format requested at submission time.