ExportService.

export_slides

export_slides(workspace_id: str, request: SlidesExportRequest, store_path: Union[str, Path], timeout: float, retry: float, max_retry: float) -> None

Exports slides based on slide export request.

Parameters

nametypedescription
workspace_idstrThe workspace id from which the visualization is to be exported.
requestSlidesExportRequestThe request object containing the export parameters.
store_pathUnion[str, Path]The path to store the exported file. Default to Path.cwd().
timeoutfloatThe maximum time to wait for the export to finish. Defaults to 60.0.
retryfloatInitial wait time (in seconds) before retrying to get the exported content. Defaults to 0.2.
max_retryfloatThe maximum retry wait time (in seconds). Defaults to 5.0.

Returns

None