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": "startUrls",
12 "outputMode": "buyer-ready-records",
13 "startUrls": [{ "url": "https://api.apify.com/v2/acts/apify~web-scraper" }],
14 "requestTimeoutSecs": 30,
15 "maxRequestRetries": 2,
16 "sinceLastRun": False,
17 "deltaMode": True,
18 "memberTimeoutSecs": 300,
19 "zentraOwnerQa": False,
20}
21
22
23run = client.actor("zentrafoundry/agentops-apify-builders-bundle").call(run_input=run_input)
24
25
26print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
27for item in client.dataset(run.default_dataset_id).iterate_items():
28 print(item)
29
30