1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "companies": [
10 {
11 "name": "Tamara",
12 "careersUrl": "https://boards.greenhouse.io/tamara",
13 "website": "https://tamara.co",
14 },
15 {
16 "name": "Ziina",
17 "careersUrl": "https://jobs.ashbyhq.com/ziina",
18 "website": "https://ziina.com",
19 },
20 {
21 "name": "Nium",
22 "careersUrl": "https://jobs.lever.co/nium",
23 "website": "https://www.nium.com",
24 },
25 {
26 "name": "Salla",
27 "careersUrl": "https://apply.workable.com/salla",
28 "website": "https://salla.sa",
29 },
30 {
31 "name": "NVIDIA",
32 "careersUrl": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite",
33 "website": "https://www.nvidia.com",
34 },
35 ],
36 "trackingId": "my-target-accounts",
37 "filters": {
38 "functions": [],
39 "countries": [],
40 "seniority": [],
41 "titleKeywords": [],
42 "excludeTitleKeywords": [],
43 },
44 "maxJobsPerCompany": 200,
45 "proxyConfiguration": { "useApifyProxy": True },
46}
47
48
49run = client.actor("almoutasem_nabil/hiring-signals-monitor").call(run_input=run_input)
50
51
52print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
53for item in client.dataset(run.default_dataset_id).iterate_items():
54 print(item)
55
56