1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "url": [
10 "https://www.bbb.org/ca/on/ottawa/profile/home-improvement/renosgroup-0117-34843/customer-reviews",
11 "https://www.bbb.org/ca/bc/vancouver/profile/credit-cards-and-plans/peoples-payments-and-cards-part-of-peoples-group-0037-1242602/complaints",
12 ],
13 "proxy": { "useApifyProxy": True },
14}
15
16
17run = client.actor("canadesk/bulk-bbb").call(run_input=run_input)
18
19
20print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
21for item in client.dataset(run["defaultDatasetId"]).iterate_items():
22 print(item)
23
24