1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "workflow": "collect",
10 "keyword": "software",
11 "location": "United States",
12 "startUrls": [],
13 "postedDate": "anytime",
14 "workplace": "all",
15 "employmentType": "all",
16 "includeDescription": True,
17 "stateNamespace": "default",
18 "firstRunBehavior": "seed_only",
19 "maxJobs": 20,
20 "maxRuntimeSecs": 180,
21 "maxBuyerChargeUsd": 1,
22}
23
24
25run = client.actor("luminar/workable-jobs-change-monitor").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