1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "productUrls": [
9 "https://www.alternate.nl/HP/EliteBook-8-G2i-DW7K2ET-ABH-14-inch-Copilotplus-laptop/html/product/1950510",
10 "https://azerty.nl/product/samsung-galaxy-book6-14-w11pro-u7-32gb-512gb-ee/9523559",
11 ] }
12
13
14run = client.actor("codeclouds/levertijd-benchmark-webshops").call(run_input=run_input)
15
16
17print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
18for item in client.dataset(run.default_dataset_id).iterate_items():
19 print(item)
20
21