1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "apps": [{
10 "name": "HabitKit",
11 "role": "own",
12 "appStoreId": "6448311069",
13 "googlePlayId": "com.roehl.habitkit",
14 }],
15 "keywords": [
16 "habit tracker",
17 "daily habits",
18 ],
19 "countries": [
20 "us",
21 "gb",
22 "de",
23 ],
24}
25
26
27run = client.actor("herazur/cross-store-aso-keyword-rank-monitor").call(run_input=run_input)
28
29
30print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
31for item in client.dataset(run.default_dataset_id).iterate_items():
32 print(item)
33
34