API not found
Closed this issue · 6 comments
redtoad commented
redtoad commented
redtoad commented
Original comment by turtle02 (Bitbucket: turtle02, GitHub: turtle02)
Actually I fixed this by specifying the latest version of lxml but now no matter what API access key I put it it always says invalid.
InvalidClientTokenId: InvalidClientTokenId: The AWS Access Key Id you provided does not exist in our records.
redtoad commented
redtoad commented
redtoad commented
Original comment by turtle02 (Bitbucket: turtle02, GitHub: turtle02)
I have installed lxml also, should there be an import from that also?
from amazonproduct import API
api = API(locale='us')
items = api.item_search('Books', Publisher="O'Reilly")
for book in items:
print '%s: "%s"' % (book.ItemAttributes.Author,
book.ItemAttributes.Title)