1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "searchType": "jobs",
10 "siteLanguage": "en",
11 "keywords": "developer",
12 "company": "",
13 "location": "",
14 "searchRadius": "",
15 "country": "",
16 "remote": [],
17 "contractType": [],
18 "workingLanguage": [],
19 "jobCategory": "",
20 "jobSubCategory": "",
21 "jobRole": "",
22 "sectors": [],
23 "subIndustry": [],
24 "experienceLevel": "",
25 "educationLevel": "",
26 "companySize": "",
27 "companyLabels": [],
28 "companyCommitments": [],
29 "salaryMin": 0,
30 "salaryMax": 0,
31 "postedWithinDays": 0,
32 "sortBy": "relevance",
33 "startUrl": "",
34 "maxItems": 5,
35}
36
37
38run = client.actor("azzouzana/welcome-to-the-jungle-jobs-scraper").call(run_input=run_input)
39
40
41print("đź’ľ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
42for item in client.dataset(run["defaultDatasetId"]).iterate_items():
43 print(item)
44
45