1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "search": "food game",
10 "startUrls": [
11 "https://store.playstation.com/en-tr/product/EP4389-CUSA17440_00-DCLGAMEEU0000000",
12 "https://store.playstation.com/en-tr/search/game",
13 "https://store.playstation.com/en-tr/concept/10000886",
14 "https://store.playstation.com/en-tr/category/d42c9dc6-5516-4a34-a511-c09894266d98/1",
15 ],
16 "maxItems": 20,
17 "endPage": 1,
18 "extendOutputFunction": "($) => { return {} }",
19 "customMapFunction": "(object) => { return {...object} }",
20 "proxy": { "useApifyProxy": True },
21}
22
23
24run = client.actor("epctex/playstation-store-scraper").call(run_input=run_input)
25
26
27print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
28for item in client.dataset(run["defaultDatasetId"]).iterate_items():
29 print(item)
30
31