我正在使用https://github.com/yoavaviram/python-amazon-simple-product-api。 每次返回的項目數是50,即使我使用了search_n(100,...)。任何人都知道爲什麼?在哪裏設置最大數量?由於爲什麼我只能通過python-amazon-product-api.AmazonAPI.search獲得50個項目
amazon = AmazonAPI('key',
'key2',
'key3',
MaxQPS=0.9,
Region='US')
try:
products = amazon.search_n(100, Keywords='drone', SearchIndex='All')
for i, product in enumerate(products):
print_statement
except Exception as e:
print "Exception while searching Amazon:"+str(e)
https://python-amazon-product-api.readthedocs.org/en/latest/上的文檔沒有引用'search_n'方法 - 你確定你沒有使用https:// github .com/yoavaviram/python-amazon-simple-product-api,哪個? –
對不起。已更新。 https://python-amazon-product-api.readthedocs.org/en/latest/每次可以返回50多個項目? – BAE