1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "productUrls": [
10 "https://www.otomoto.pl/osobowe/oferta/jeep-cherokee-ID6IcpLu.html",
11 "https://www.otomoto.pl/osobowe/oferta/bmw-x2-ID6IcASP.html",
12 "https://www.otomoto.pl/osobowe/oferta/chrysler-pacifica-ID6IcAU5.html",
13 ],
14 "categoryUrls": ["https://www.otomoto.pl/osobowe/bmw"],
15}
16
17
18run = client.actor("123webdata/otomoto-pl-scraper").call(run_input=run_input)
19
20
21print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
22for item in client.dataset(run.default_dataset_id).iterate_items():
23 print(item)
24
25