这是python-amazon-product-api
的示例代码>>> api = API(locale='uk')
>>> result = api.item_lookup('B006H3MIV8')
>>> for item in result.Items.Item:
... print '%s (%s) in group %s' % (
... item.ItemAttributes.Title, item.ASIN)
...
Chimes of Freedom: The Songs of Bob Dylan (B006H3MIV8)
我不明白的是用于item_lookup()
的Identifier
。我的想法是获得评论对于此处显示的某些产品,但我想使用产品名称,而不是标识符。例如:Bamboo stylus
。我该如何实现?
>>> api.item_lookup('0316067938', ResponseGroup='Reviews',
... TruncateReviewsAt=256, IncludeReviewsSummary=False)
编辑:我尝试了一下:但是它抛出了AttributeError: no such child
for item in api.item_search('DVD', Actor="Keanu Reaves",limit=10):
print '%s: "%s"' % (item.ItemAttributes.Identifier,
item.ItemAttributes.Title)
我尝试了一下:但是我有一个不同的错误:
mazonproduct.errors.AWSError: AWS.MinimumParameterRequirement: Your request should have atleast 1 of the following parameters: 'Keywords','Title','Power','BrowseNode','Artist','Author','Actor','Director','AudienceRating','Manufacturer','MusicLabel','Composer','Publisher','Brand','Conductor','Orchestra','TextStream','Cuisine','City','Neighborhood'.
for item in api.item_search('Blended', keywords="Keanu Reaves"):
print '%s: "%s"' % (item.ItemAttributes.Actor,
item.ItemAttributes.Title)
请注意,我确实有keywords
中的parameter request
您需要item_search
。Bamboo stylus
太通用术语无法识别单个产品。标识符有点像主键。因此,首先使用item_search
搜索该产品,拿起您的项目,然后使用该项目的标识符进行评论。例如。 -
>>> api.item_search('Blended', Keywords='Mustang')
您可以发送的参数列表,作为query
在文档中列出。