gpt4 book ai didi

python - 尝试仅获取亚马逊搜索的首页结果

转载 作者:太空宇宙 更新时间:2023-11-03 15:44:15 25 4
gpt4 key购买 nike

我目前正在尝试让此查询仅返回结果的第一页。我目前正在使用python amazon api这是我的代码。

#!python

api = API(cfg=config.amzconfig)

query='justin bieber'
thingy = api.item_search('Blended', ResponseGroup='Large', Keywords=query)
print(thingy)
for thing in thingy:
# print(lxml.etree.tostring(item, pretty_print=True))
try:
print('%s' % thing.ItemAttributes.Title)
print('%s' % thing.DetailPageURL)
print('%s' % thing.SmallImage.URL)
except:
continue

这工作正常,但返回的结果数量非常大。另一方面,如果我按照他们的文档中的说明进行操作并添加 paginate=False ,它不会返回任何结果。

最佳答案

深入研究源代码后,您可以输入 limit=1 来获取页数

关于python - 尝试仅获取亚马逊搜索的首页结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41904564/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com