ExportService.
export_tabular
export_tabular(
workspace_id: str, export_request: ExportRequest, store_path: Union[str, Path], timeout: float, retry: float, max_retry: float
) ->
None
Export Tabular (CSV, XLSX) data from the specified GoodData Dashboard report, saved to the specified file path.
Parameters
name | type | description |
---|---|---|
workspace_id | str | The ID of the GoodData Workspace. |
export_request | ExportRequest | An instance of ExportRequest containing the required information for the tabular export. |
store_path | Union[str, Path] | The path to save the exported tabular data. Defaults to the current directory. |
timeout | float | The maximum amount of time (in seconds) to wait for the server to process the export. Defaults to 60.0. |
retry | float | Initial wait time (in seconds) before retrying to get the exported content. Defaults to 0.2. |
max_retry | float | The maximum retry wait time (in seconds). Defaults to 5.0. |