1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "domains": [
10 "allbirds.com",
11 "techcrunch.com",
12 "vercel.com",
13 "sentry.io",
14 ],
15 "maxConcurrency": 20,
16 "timeoutSecs": 10,
17 "minConfidence": 50,
18 "renderConcurrency": 4,
19 "renderTimeoutSecs": 25,
20 "renderBlockResources": "default",
21 "snapshotStoreName": "tech-stack-snapshots",
22 "changesDatasetName": "tech-stack-changes",
23 "changeMinConfidence": 75,
24 "changeConfirmScans": 2,
25 "proxy": { "useApifyProxy": False },
26}
27
28
29run = client.actor("flux_pull/tech-stack-buying-signal-enrichment").call(run_input=run_input)
30
31
32print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
33for item in client.dataset(run.default_dataset_id).iterate_items():
34 print(item)
35
36