亚马逊产品搜索API Python UPC

时间:2017-07-27 01:13:27

标签: python-3.x api amazon product

我正在使用此代码在亚马逊上搜索产品。有没有办法让我看看UPC的产品?

from amazon.api import AmazonAPI
amazon = AmazonAPI(AMAZON_ACCESS_KEY, AMAZON_SECRET_KEY, AMAZON_ASSOC_TAG)
product = amazon.lookup(ItemId='B00EOE0WKQ')
product.title

2 个答案:

答案 0 :(得分:0)

免责声明:我没有安装python-amazon-simple-product-api。 (我使用python-amazon-product-api 0.2.8)

但是,我确实认为在您的 import pygame pygame.init() BLACK = (0, 0, 0) WHITE = (255, 255, 255) size = (400, 500) screen = pygame.display.set_mode(size) done = False clock = pygame.time.Clock() while not done: for event in pygame.event.get(): # User did something if event.type == pygame.QUIT: # If user clicked close done = True # Flag that we are done so we exit this loop screen.fill(WHITE) font = pygame.font.SysFont(None, 25, True, False) text = font.render("Some Text", True, BLACK) screen.blit(text, [0, 0]) pygame.display.flip() clock.tick(60) pygame.quit() 电话中添加IdType='UPC',SearchIndex='All'可以让您更接近。

e.g:

amazon.product

另外,请务必使用与product = amazon.lookup(ItemId='028000467012', IdType='UPC', SearchIndex='All') 匹配的IdType,以避免错误。

在此处找到更多内容:http://docs.aws.amazon.com/AWSECommerceService/latest/DG/EX_LookupbyUPC.html https://www.amazon.com/gp/seller/asin-upc-isbn-info.html

答案 1 :(得分:0)

回答得晚一点,但是为了将来的贡献...

您可以在刮板的documentation

中找到所有可能的查找类型

无论如何,您都要使用UPC查找对象

api = API(locale='uk')
api.item_lookup([UPC], SearchIndex='Books', IdType='UPC')