1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "keywords": ["software engineer"],
10 "country": "United States",
11 "location": "San Francisco, CA",
12 "datePosted": "3",
13 "radius": "",
14 "jobType": "",
15 "jobLevel": "",
16 "remoteWorkType": "",
17 "resumeKeywords": [
18 {
19 "keyword": "JavaScript",
20 "aliases": ["JS"],
21 },
22 {
23 "keyword": "TypeScript",
24 "aliases": ["TS"],
25 },
26 {
27 "keyword": "Node.js",
28 "aliases": [
29 "Node",
30 "NodeJS",
31 ],
32 },
33 {
34 "keyword": "React Native",
35 "aliases": ["RN"],
36 },
37 { "keyword": "React" },
38 { "keyword": "Expo" },
39 ],
40}
41
42
43run = client.actor("cheap_scraper/indeed-job-scraper").call(run_input=run_input)
44
45
46print("πΎ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
47for item in client.dataset(run["defaultDatasetId"]).iterate_items():
48 print(item)
49
50