I can't seem to get this library working. I got my access key, secret and associate tag. And I am following exact same thing as explained in the README
, however I am getting (None, None)
instead of price and currency. I don't understand what I am doing wrong. Is it because I signed up on amazon.in?
>>> from amazon.api import AmazonAPI
>>> amazon = AmazonAPI(AMAZON_ACCESS_KEY, AMAZON_SECRET_KEY, AMAZON_ASSOC_TAG)
>>> product = amazon.lookup(ItemId='B0051QVF7A')
>>> product.title
'Kindle, Wi-Fi, 6" E Ink Display - for international shipment'
>>> product.price_and_currency
(None, None)