python-amazon-simple-product-api
python-amazon-simple-product-api copied to clipboard
A simple Python wrapper for the Amazon.com Product Advertising API ⛺
The following information is returned by Bottlenose. How can I access it? ` 1350 1130 990 750 ` ` 1098 1701 1280 1449 `
Empty image list: product = amazon.lookup(ItemId="B006OVWT08") return product.images Returns: [, , , , , ]
It's generally unpythonic to fail silently when errors occur. It would be pretty easy to check the XML to see if the `Errors` tag is present, and then raise an...
Right now, there is very limited support for the "AlternateVersions" and "Variations" response groups. The API supports [many response groups](https://docs.aws.amazon.com/AWSECommerceService/latest/DG/CHAP_ResponseGroupsList.html), and I would imagine that this package poorly supports many...
I've used both `search` and `search_n` using different keywords. Every time I get a maximum total number of results of 49. Is that normal? That seems to be about a...
The way this project currently works is by assuming there's only one response group ("Large"). The `Product` class is based on that response group, plus a few extras which are...
Adds support for another response group. Part of the long slog to add support for #60. I modeled this on how we support the "Images" response group. I'm not sure...
I am a user from india. On calling amazon = AmazonAPI(aws_secret=secret_key,aws_associate_tag=assoc_id,aws_key=access_key,region='in') the amazon server returns the error that timestamp has expired. And I found out that the function AmazonAPI is...
Defaults number of node children to empty list, for nodes which do not have sub-nodes. This will prevent errors such as from occuring: 'AttributeError: no such child: {http://webservices.amazon.com/AWSECommerceService/2013-08-01}Children'.