1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "jobTitle": "Python Developer",
10 "locations": [
11 "New York, NY",
12 "Remote",
13 ],
14 "maxJobs": 100,
15 "userSkills": [
16 "Python",
17 "FastAPI",
18 "PostgreSQL",
19 "Docker",
20 ],
21 "userExperience": 3,
22 "preferredJobTypes": ["Full-time"],
23}
24
25
26run = client.actor("nikhuge/advanced-linkedin-jobs-scraper-with-ai").call(run_input=run_input)
27
28
29print("πΎ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
30for item in client.dataset(run["defaultDatasetId"]).iterate_items():
31 print(item)
32
33