Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 1.39 KB

File metadata and controls

29 lines (24 loc) · 1.39 KB
id retrieve-actor-data
title Retrieve Actor data
description Fetch, paginate, and merge datasets from Actor runs.

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import CodeBlock from '@theme/CodeBlock';

import RetrieveAsyncExample from '!!raw-loader!./code/03_retrieve_async.py'; import RetrieveSyncExample from '!!raw-loader!./code/03_retrieve_sync.py';

Actor output data is stored in datasets, which can be retrieved from individual Actor runs. Dataset items support pagination for efficient retrieval, and multiple datasets can be merged into a single dataset for further analysis. This merged dataset can then be exported into various formats such as CSV, JSON, XLSX, or XML. Additionally, integrations provide powerful tools to automate data workflows.

The following example shows how to fetch datasets from an Actor's runs, paginate through their items, and merge them into a single dataset for unified analysis:

{RetrieveAsyncExample} {RetrieveSyncExample}