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
| name | type | description |
|---|---|---|
| workspace_id | str | The ID of the target workspace. |
| export_id | str | Export ID returned by ``create_raw_export``. |
| timeout | float | Total seconds to wait for the export to complete. Defaults to 60.0. |
| retry | float | Initial wait between retries in seconds. Defaults to 0.2. |
| max_retry | float | Maximum wait between retries in seconds. Defaults to 5.0. |
Returns
| type | description |
|---|---|
| bytes | Raw export bytes in the format requested at submission time. |