python-amazon-simple-product-api icon indicating copy to clipboard operation
python-amazon-simple-product-api copied to clipboard

A simple Python wrapper for the Amazon.com Product Advertising API ⛺

Results 38 python-amazon-simple-product-api issues
Sort by recently updated
recently updated
newest added

Apologies if I'm making a noob error, but I can't seem to get browse node to work correctly. I'm a version ahead so that might be the issue but as...

I just forked the repo and ran the tests, and unsurprisingly, lots of them fail... because they are dependent on the information about products not changing, but they do. I'm...

So basically I'm trying to write a script that will check for the availability of a currently-out-of-stock item. **Here's the URL of the product page:** https://www.amazon.com/Adidas-Originals-Primeknit-Trainers-Sneakers/dp/B07177WSCC/ref=sr_1_2?s=apparel&ie=UTF8&qid=1517048725&sr=1-2&nodeID=7147441011&psd=1&keywords=adidas+Originals+Men%27s+Stan+Smith+OG+PK+Fashion+Sneaker **Parent ASIN:** B01N8TRZDX Getting...

Hi, at first: Thank you for this great API wrapper, it saved me a lot of time. I have one issue: I get no price for a product, when I...

'get_parent': , 'brand': 'Sally Hansen', 'get_attribute': , 'parsed_response': ,

codes: amazon = AmazonAPI(AMAZON_ACCESS_KEY, AMAZON_SECRET_KEY, AMAZON_ASSOC_TAG) try: product = amazon.lookup(ItemId='B00E4VIC4C') except Exception as e: print(e) product = amazon.lookup(ItemId = 'B005GUQCGK') print('%s' % product.sales_rank) print('%s' % product.title) console result: [root@ amazon_api]#...

that is due to the API returning 'AWS.ECommerceService.NoExactMatches' error which is not handled

I added this method to AmazonProduct objects. Its an interesting method to discover other products: ``` @property def similar_products(self): """SimlarProducts. :return: List Of ASIN Similar Products (list) """ result =...