1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "items": [
10 {
11 "item_id": "03D906051",
12 "maker": "VAG",
13 "description": "Ignition coil",
14 "origin_price": 0,
15 },
16 {
17 "item_id": "55593189",
18 "maker": "Opel",
19 "description": "Oil filter",
20 "origin_price": 0,
21 },
22 {
23 "item_id": "620939134R",
24 "maker": "Renault",
25 "description": "Rear bumper absorber",
26 "origin_price": 0,
27 },
28 {
29 "item_id": "263203C100",
30 "maker": "Hyundai",
31 "description": "Oil filter",
32 "origin_price": 0,
33 },
34 {
35 "item_id": "WL7322",
36 "maker": "WIX",
37 "description": "Oil filter",
38 "origin_price": 0,
39 },
40 {
41 "item_id": "172896",
42 "maker": "FEBI",
43 "description": "Oil filter",
44 "origin_price": 0,
45 },
46 {
47 "item_id": "ADBP990010",
48 "maker": "Blue Print",
49 "description": "Oil filter",
50 "origin_price": 0,
51 },
52 {
53 "item_id": "280732",
54 "maker": "Maxgear",
55 "description": "Oil filter",
56 "origin_price": 0,
57 },
58 ],
59 "proxyConfiguration": {
60 "useApifyProxy": True,
61 "apifyProxyGroups": ["RESIDENTIAL"],
62 },
63}
64
65
66run = client.actor("climond/avtopro-pl-competitor-price-checker").call(run_input=run_input)
67
68
69print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
70for item in client.dataset(run.default_dataset_id).iterate_items():
71 print(item)
72
73