1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "URL": "https://www.homedepot.com/p/HOOVER-WindTunnel-Bagless-Pet-Upright-Vacuum-Cleaner-with-Automatic-Cord-Rewind-For-Carpet-Hardwood-and-Upholstery-UH71320V/317525930",
10 "sorts": ["newest"],
11 "starRatings": ["all"],
12 "maxreviews": 5000,
13}
14
15
16run = client.actor("wibuild.in/home-depot-reviews-scraper").call(run_input=run_input)
17
18
19print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
20for item in client.dataset(run.default_dataset_id).iterate_items():
21 print(item)
22
23