Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to get book cover picture through amazon API using python?

share|improve this question
3  
please, read How to Ask – J.F. Sebastian Sep 21 '12 at 13:36

closed as not a real question by Steven Rumbalski, Bart, Luksprog, BlaXpirit, Graviton Oct 6 '12 at 6:46

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

python-amazon-product package provides get-cover.py example script.

As an alternative here's bottlenose's (a thin wrapper over the Amazon Product Advertising API) usage example:

>>> import bottlenose
>>> amazon = bottlenose.Amazon(AMAZON_ACCESS_KEY_ID, AMAZON_SECRET_KEY, AMAZON_ASSOC_TAG)
>>> response = amazon.ItemLookup(ItemId="0596520999", ResponseGroup="Images",
     SearchIndex="Books", IdType="ISBN")
<?xml version="1.0" ?><ItemLookupResponse xmlns="http://webservices.amazon...
share|improve this answer
Thanks for the code – sudheera njs Oct 30 '12 at 11:53

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