1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "workflow": "collect",
10 "companyBoards": ["airbnb"],
11 "jobTargets": [],
12 "department": "",
13 "location": "",
14 "keywords": [],
15 "firstPublishedAfter": "",
16 "remoteOnly": False,
17 "includeContent": True,
18 "includeQuestions": False,
19 "includePayRanges": False,
20 "stateNamespace": "default",
21 "firstRunBehavior": "seed_only",
22 "maxJobs": 100,
23 "maxJobsPerBoard": 500,
24 "maxRuntimeSecs": 60,
25 "maxBuyerChargeUsd": 5,
26}
27
28
29run = client.actor("luminar/greenhouse-jobs-change-monitor").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