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": [],
14 "maxItems": 1,
15 "perSourceLimit": 25,
16 "maxTotalChargeUsd": 5,
17 "overallTimeoutSecs": 120,
18 "requestTimeoutSecs": 30,
19 "maxRequestRetries": 2,
20 "sinceLastRun": False,
21 "deltaMode": False,
22}
23
24
25run = client.actor("zentrafoundry/solar-interconnection-queue-watcher").call(run_input=run_input)
26
27
28print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
29for item in client.dataset(run.default_dataset_id).iterate_items():
30 print(item)
31
32