1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "keyword": "Data Analyst",
10 "country": "United States",
11 "platforms": [
12 "Arbetsförmedlingen",
13 "Baitoru",
14 "Bundesagentur für Arbeit",
15 "doda",
16 "France Travail",
17 "Freelancer.com",
18 "JobKorea",
19 "Jobright",
20 "Jobs2Careers",
21 "Kariyer.net",
22 "Kyujin Box",
23 "Mynavi Tenshoku",
24 "OCC",
25 "OnlineJobs.ph",
26 "SAP",
27 "Saramin",
28 "USAJOBS",
29 "Indeed",
30 "LinkedIn",
31 "Glassdoor",
32 "ZipRecruiter",
33 "Jobstreet",
34 "Glints",
35 "Stepstone",
36 "Naukri.com",
37 "Catho",
38 "foundit",
39 "Bayt.com",
40 "Reed.co.uk",
41 "Totaljobs",
42 "CV-Library",
43 "VDAB",
44 "HelloWork",
45 "InfoJobs",
46 "Job Bank",
47 "jobs.ch",
48 "Pracuj.pl",
49 "Talent.com",
50 "Jooble",
51 ],
52 "max_results": 10,
53 "remote_only": False,
54 "distance": 300,
55 "posted_since": "1 month",
56 "job_type": "all",
57 "currency": "USD",
58}
59
60
61run = client.actor("truefetch/job-search").call(run_input=run_input)
62
63
64print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
65for item in client.dataset(run["defaultDatasetId"]).iterate_items():
66 print(item)
67
68