1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "careerPageUrls": [
10 "https://boards.greenhouse.io/stripe",
11 "https://jobs.lever.co/spotify",
12 "https://jobs.ashbyhq.com/notion",
13 "https://apply.workable.com/huggingface",
14 "https://careers.smartrecruiters.com/SmartRecruiters",
15 "https://helloprint.recruitee.com",
16 "https://turbalance.jobs.personio.com",
17 "https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite",
18 ],
19 "keywords": ["engineer"],
20 "excludeKeywords": ["intern"],
21 "locations": [
22 "remote",
23 "europe",
24 ],
25}
26
27
28run = client.actor("i-scraper/ats-jobs-scraper").call(run_input=run_input)
29
30
31print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
32for item in client.dataset(run.default_dataset_id).iterate_items():
33 print(item)
34
35