1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "urls": ["https://www.walmart.com/ip/HP-15-6-Touch-Screen-Laptop-Intel-Core-i3-8GB-Memory-128GB-SSD-Natural-Silver/5749163974?athcpid=5749163974&athpgid=AthenaItempage&athcgid=null&athznid=utic&athieid=v0&athstid=CS020&athguid=ZlCZ2z3_FKPjn9o4u98_FvfZ57BxR9hEnoGZ&athancid=5689515658&athena=true&athbdg=L1600"],
10 "proxyConfiguration": { "useApifyProxy": True },
11}
12
13
14run = client.actor("getdataforme/walmart-product-details-scraper-bulk").call(run_input=run_input)
15
16
17print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
18for item in client.dataset(run["defaultDatasetId"]).iterate_items():
19 print(item)
20
21