1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "startUrls": [{ "url": "https://www.werkzoeken.nl/vacatures/?filtered=1&from-company-profile=&ai=&what=Productiemedewerker&r=30&where=Barneveld&salary=&date=&pnr=8&vacancyid=14953626" }] }
9
10
11run = client.actor("lexis-solutions/werkzoeken-nl-scraper").call(run_input=run_input)
12
13
14print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
15for item in client.dataset(run["defaultDatasetId"]).iterate_items():
16 print(item)
17
18