· 7 years ago · Aug 30, 2018, 03:58 AM
1Amazon api not returning results aligned with the amazon website results
2root = api.item_search('All', Keywords=searchWord, ResponseGroup='Large', ItemPage=pageNo)
3
4root = api.item_search('All', Keywords=searchWord, ResponseGroup='Large', ItemPage=pageNo, MerchantId='All')
5
6AWS_KEY = '...'
7SECRET_KEY = '...'
8searchWord = "Lenovo"
9pageNo = "1"
10
11api = API(AWS_KEY, SECRET_KEY, 'us')
12
13result = api.item_search('All', Keywords=searchWord, ResponseGroup='Large', ItemPage=pageNo, MerchantId='All')
14for item in result.Items.Item:
15 print item.ItemAttributes.Title