1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "sources": [
9 {
10 "source": "greenhouse",
11 "company": "everlane",
12 "filters": { "titleKeywords": [
13 "engineer",
14 "product",
15 ] },
16 },
17 {
18 "source": "lever",
19 "company": "leverdemo",
20 "filters": { "titleKeywords": ["engineering"] },
21 },
22 ] }
23
24
25run = client.actor("digigecko/jobwatch").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