python - list_price and price_and_currency are empty but product page shows price -
i'm trying price info amazon product asin: b00bvrv8h0
using python-amazon-simple-product-api
wrapper (https://github.com/yoavaviram/python-amazon-simple-product-api)
from amazon.api import amazonapi amazon_access_key = 'a...q' amazon_secret_key = 'l...j' amazon = amazonapi(amazon_access_key, amazon_secret_key, aws_associate_tag = 'test') product = amazon.lookup(itemid='b00bvrv8h0') print(product.list_price) print(product.price_and_currency)
gives:
(none, none) (none, none)
for asin both list_price
, price_and_currency
equal (none, none)
, when visit product page (https://www.amazon.com/smoke-pickles-recipes-stories-southern-ebook/dp/b00bvrv8h0) see price.
how can using api wrapper? other products works fine.
Comments
Post a Comment