zu extrahieren. Hier ist der Code, den ich bin Derzeit verwendet: < /p>
Code: Select all
amazon = AmazonAPI(aws_access_key,
aws_secret_key,
aws_associate_key)
# products = amazon.search(Keywords=book_demanded_df['isbn01'].values[1], SearchIndex='Books')
products = amazon.search(Keywords='B00CU0NSCU', SearchIndex='All')
# print book_demanded_df['isbn01'].values[1]
for i, product in enumerate(products):
print product.title
print product.asin
print product.get_attribute('Manufacturer')
print product.get_attributes(['ItemDimensions.Width', 'ItemDimensions.Height'])
print product.offer_url
Ist es möglich, diese API zu tun? < /p>