1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "targets": [
10 {
11 "ats": "greenhouse",
12 "slug": "stripe",
13 },
14 {
15 "ats": "lever",
16 "slug": "mistral",
17 },
18 {
19 "ats": "ashby",
20 "slug": "notion",
21 },
22 ],
23 "keywords": ["engineer"],
24 "excludeKeywords": ["intern"],
25 "locations": [
26 "remote",
27 "europe",
28 ],
29}
30
31
32run = client.actor("i-scraper/ats-jobs-scraper").call(run_input=run_input)
33
34
35print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
36for item in client.dataset(run["defaultDatasetId"]).iterate_items():
37 print(item)
38
39