1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "targets": [
10 {
11 "name": "Notion",
12 "website": "https://notion.so",
13 "appStoreId": "1232780281",
14 "googlePlayId": "notion.id",
15 },
16 {
17 "name": "Slack",
18 "website": "https://slack.com",
19 "appStoreId": "618783545",
20 "googlePlayId": "com.Slack",
21 },
22 ],
23 "sources": [
24 "trustpilot",
25 "appstore",
26 "googleplay",
27 ],
28 "countries": [
29 "us",
30 "gb",
31 "sa",
32 "ae",
33 "eg",
34 ],
35 "proxyConfiguration": { "useApifyProxy": True },
36}
37
38
39run = client.actor("almoutasem_nabil/review-intelligence").call(run_input=run_input)
40
41
42print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
43for item in client.dataset(run.default_dataset_id).iterate_items():
44 print(item)
45
46