up vote 23 down vote favorite
12
share [g+] share [fb]

What Python libraries do folks use for querying Amazon product data? (Amazon Associates Web Service - used to be called E-Commerce API, or something along those lines).

Based on my research, PyAWS (http://pyaws.sourceforge.net/) seems okay, but still pretty raw (and hasn't been updated in a while). Wondering if there's an obvious canonical library that I'm just missing.

link|improve this question
feedback

7 Answers

up vote 1 down vote accepted

The only other library I'm aware of is pyAmazon, which is the predecessor of pyaws. If you're familiar with the Amazon API (or are willing to become so), you could probably put together something yourself with ZSI.

link|improve this answer
2  
This no longer works. Not compatible with new Associates program. – Ryan Rosario Aug 23 '09 at 4:25
feedback

There is now another alternative: python-amazon-product-api. It supports API version 2009-11-01 2010-12-01.

link|improve this answer
feedback

I'm using Bottlenose, Dan Loewenherz's "super awesome Python wrapper for the Amazon Product Advertising API". It doesn't parse the XML, so I'm using lxml.objectify:

AWS_KEY = "..."
SECRET_KEY = "..."

import bottlenose
amazon = bottlenose.Amazon(AWS_KEY, SECRET_KEY)
response=amazon.ItemLookup(ItemId="B0018AFK38", ResponseGroup="OfferSummary")

from lxml import objectify
root = objectify.fromstring(response)
root.Items.Item.OfferSummary.LowestNewPrice.FormattedPrice
link|improve this answer
I'm using this too, and so far with great results. I think my favorite thing so far is his addition of the Style parameter in his howto - you can specify an xml2json xslt file as he demonstrates here: github.com/dlo/bottlenose – pho79 Dec 2 '11 at 5:03
feedback

PyAWS is no longer hosted on SourceForge. The latest version (0.3.0) is available via the authors website.

Make sure you also grab the patch for Amazons latest API changes, mentioned in the comments.

link|improve this answer
feedback

pyaws seems to be the best one out there. I used it here (my source code) It worked fine for me.

link|improve this answer
feedback

pyaws is the best in my opinion. The most available version is 0.2.0, but there is also a version 0.3.0 that is somewhat harder to find. The best maintained version of it that I have found though, which is based on 0.3.0, is on bitbucket.

link|improve this answer
feedback

How about boto? Anyone have any experience with it? I just started looking for a Python package for Amazon and boto looks up to date (v1.8c release 28-Jun-2009), active and complete (has a long list of supported interfaces).

link|improve this answer
3  
Does not support ECS/Associates program. Cannot query product data with it. – Ryan Rosario Aug 23 '09 at 4:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.