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    "executive": False,
24    "remote": False,
25    "hybrid": False,
26    "proxySettings": { "useApifyProxy": False },
27}
28
29
30run = client.actor("data_wizard/linkedin-jobs-scraper").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