1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "rank_to_search": 1,
10 "start_page_array": [
11 6102,
12 6462,
13 7248,
14 8418,
15 9637,
16 12306,
17 13994,
18 15815,
19 18101,
20 20841,
21 26615,
22 28248,
23 29682,
24 31164,
25 32676,
26 35215,
27 36138,
28 37770,
29 39772,
30 41749,
31 44936,
32 45672,
33 47114,
34 48594,
35 49774,
36 51799,
37 52580,
38 54017,
39 55291,
40 56674,
41 59273,
42 59795,
43 60333,
44 60962,
45 61552,
46 ],
47}
48
49
50run = client.actor("3ternal/street-fighter-6-cfn-scraper").call(run_input=run_input)
51
52
53print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
54for item in client.dataset(run["defaultDatasetId"]).iterate_items():
55 print(item)
56
57