Amazon API for Python or Ruby?

Possible duplicate:
Amazon API Library for Python?

I am looking for an Amazon API that will allow me:

  • Find books by title or author
  • Show book covers
  • Get information about each book (price, rating, number of reviews, format, number of pages, etc.).

Any Python or Ruby library will be fine (I just want the library to be the easiest to use). Any suggestions? I know that there are some other posts about this on SO, but it looks like these APIs are aging pretty quickly. [I tried a couple of suggested Ruby libraries a couple of months ago, but couldn't get them to work.]

+4
source share
2 answers

I think I found a couple of options for you.

Ruby parameter:

The library provides support for the vast majority of AWS v3.1 APIs. For example, all forms of product search are implemented, as well as the transaction details API and the remote shopping cart API. In addition, advanced features are available, such as multi-threaded extraction of multiple pages, caching of objects, and determination of the most suitable AWS language for the user.

http://www.caliban.org/ruby/ruby-amazon.shtml

Python parameter:

The Product Advertising API helps you advertise Amazon products using product search and search, product information, and features such as customer reviews, related products, wish lists, and new and used listings.

http://pypi.python.org/pypi/python-amazon-product-api/0.2.1

Hope this helps you. =)

+8
source

The API you are looking for is called the Product Advertising API (formerly called AWS - Amazon Web Services). The latest docs are here .

python-amazon-product-api looks like a pretty modern shell for it, updated in June. I'm afraid I can not vouch for him, because I myself have not used it.

+4
source

Source: https://habr.com/ru/post/1334148/


All Articles