1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "keywords": [
10 "Python",
11 "SDET",
12 "Automation Engineer",
13 "AI Engineer",
14 "LLM Engineer",
15 ],
16 "locations": [
17 "India",
18 "Remote",
19 "Jaipur",
20 "Noida",
21 "Gurgaon",
22 "Bangalore",
23 "Pune",
24 "Hyderabad",
25 ],
26 "employmentType": ["Full Time"],
27}
28
29
30run = client.actor("karan_sharma_23/linkedin-indeed-job-finder").call(run_input=run_input)
31
32
33print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
34for item in client.dataset(run["defaultDatasetId"]).iterate_items():
35 print(item)
36
37