1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "query": "Python Developer",
10 "location": "Berlin, Germany",
11 "jobsToFetch": 10,
12 "contract": False,
13 "fullTime": True,
14 "partTime": False,
15 "temporary": False,
16 "volunteer": False,
17 "internship": False,
18 "internshipLevel": False,
19 "entryLevel": False,
20 "associate": False,
21 "midSeniorLevel": False,
22 "director": False,
23 "remote": False,
24 "hybrid": False,
25 "proxySettings": { "useApifyProxy": False },
26}
27
28
29run = client.actor("data_wizard/linkedin-job-scraper").call(run_input=run_input)
30
31
32print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
33for item in client.dataset(run["defaultDatasetId"]).iterate_items():
34 print(item)
35
36