1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "targets": [
9 {
10 "platform": "ios",
11 "appId": "587366035",
12 "label": "Picsart iOS",
13 "keywords": [
14 "photo editor",
15 "collage maker",
16 ],
17 },
18 {
19 "platform": "android",
20 "appId": "com.picsart.studio",
21 "label": "Picsart Android",
22 "keywords": ["photo editor"],
23 },
24 ] }
25
26
27run = client.actor("feeng/app-store-aso-rank-tracker").call(run_input=run_input)
28
29
30print("๐พ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
31for item in client.dataset(run["defaultDatasetId"]).iterate_items():
32 print(item)
33
34