Today I added some minor support for ECS into boto. Specifically, I've implemented the ItemSearch API from the Product Advertising API. Usage is simple:
>>> from boto.ecs import ECSConnection
>>> conn = ECSConnection()
>>> books = conn.item_search("Books", Author="John Resig")
>>> for book in books:
... print book.Title
... print book.ASIN
The above example should print out the title and ASIN of all books currently on Amazon authored by John Resig, including Secrets of the JavaScript Ninja.
Happy searching!
>>> from boto.ecs import ECSConnection
>>> conn = ECSConnection()
>>> books = conn.item_search("Books", Author="John Resig")
>>> for book in books:
... print book.Title
... print book.ASIN
The above example should print out the title and ASIN of all books currently on Amazon authored by John Resig, including Secrets of the JavaScript Ninja.
Happy searching!
Comments
Action=GET&
and so it errors with HTTP 400
I have made a simple patch which I'll be submitting to github shortly