1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "buyerQuery": "buyer-ready records with source evidence",
10 "taskIntent": "buyer-ready-product-run",
11 "sourceMode": "sample",
12 "outputMode": "sample-records",
13 "startUrls": [],
14 "requestTimeoutSecs": 30,
15 "maxRequestRetries": 2,
16 "sinceLastRun": False,
17 "deltaMode": True,
18}
19
20
21run = client.actor("zentrafoundry/dataset-deduplicator").call(run_input=run_input)
22
23
24print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
25for item in client.dataset(run.default_dataset_id).iterate_items():
26 print(item)
27
28