1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "startUrls": [],
10 "query": "software developer",
11 "location": "",
12 "minSalary": 0,
13 "radius": 0,
14 "maxResults": 25,
15 "maxPagesPerSearch": 40,
16 "stateKey": "default",
17 "notificationWebhookUrl": "",
18 "proxyConfiguration": {
19 "useApifyProxy": True,
20 "apifyProxyGroups": ["RESIDENTIAL"],
21 "apifyProxyCountry": "IE",
22 },
23}
24
25
26run = client.actor("parsebird/jobs-ie-scraper").call(run_input=run_input)
27
28
29print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
30for item in client.dataset(run.default_dataset_id).iterate_items():
31 print(item)
32
33