我是amzon api的新手,我正在尝试打印从以下代码返回的项目的属性。 。
items = api.item_search('Books', Publisher="O'Reilly")
for book in items:
print book.ItemAttributes.Author, book.ItemAttributes.Title
此代码打印返回的书籍的作者和标题。但是我怎样才能获得更多细节,比如这本书的价格。
答案 0 :(得分:0)
你想学习api吗?只需要帮助(book.ItemAttributes)。这将为您提供所有可用的方法。
答案 1 :(得分:0)
两件事:
item_search
(有关详细信息,请参阅wrapper docs)。 import lxml.etree; lxml.etree.tostring(book, pretty_print=True)