重複の可能性:
Python 用の Amazon API ライブラリ?
python-amazon-product-api と lxml.objectify を使用して、Amazon 製品 API への簡単なクエリを作成したいと考えています。
from amazonproduct import API
AWS_KEY = '..'
SECRET_KEY = '..'
api = API(AWS_KEY, SECRET_KEY, 'de')
node = api.item_search('Books', Publisher='Galileo Press')
# node object returned is a lxml.objectified element
# .pyval will convert the node content into int here
total_results = node.Items.TotalResults.pyval # <--- error
total_pages = node.Items.TotalPages.pyval
# get all books from result set and print author and title
for book in node.Items.Item:
print '%s: "%s"' % (book.ItemAttributes.Author, book.ItemAttributes.Title)
エラーメッセージ:
AttributeError: 'LxmlItemSearchPaginator' オブジェクトに属性 'Items' がありません
lxml が正しくインストールされました!
間違いはどこですか?