api = finding(appid=ID_APP, config_file=None, siteid=GLOBAL_ID)
response = api.execute('findItemsAdvanced', {'keywords':search['search'],
itemFilter':[
{'name':'MinPrice' , 'value':'20',
'paramName':'Currency','paramValue':'USD'},
{'name':'MaxPrice' , 'value':'22'}
],
'paginationInput': {
'entriesPerPage': '5',
'pageNumber': '1'
},
'sortOrder': 'PricePlusShippingLowest',
})
return response.dict()
このコードでは、ループを使用せずにタイトル、ギャラリー URL、価格のみで 5 つのアイテムを取得するにはどうすればよいですか?