これが状況です。私はこの API を機能させようとしていますが、その癖をすべて理解することはできないようです。以下の例を実行しても ( https://bitbucket.org/basti/python-amazon-product-api/src/2b6b628300c4/examples/all-galileo-titles.pyから取得)、ランダムなエラーが発生します。今、私__init__()
は4つの引数を取るというエラーを受け取りました.2つしか与えていません. __init__()
ただし、すべての資格情報を正しい場所に配置しましたが、追加の引数を必要とするモジュールのどこにも見つかりません。誰にも考えはありますか?
これが私が走っていたものです。プログラムの詳細については、上記のリンクを参照してください。
from amazonproduct.api import API
import lxml
if __name__ == '__main__':
# Don't forget to create file ~/.amazon-product-api
# with your credentials (see docs for details)
api = API(locale = 'uk')
result = api.item_search('Books', Publisher= 'RosettaBooks',
ResponseGroup='Large')
# extract paging information
total_results = result.results
total_pages = len(result) # or result.pages
for book in result:
print 'page %d of %d' % (result.current, total_pages)
#~ from lxml import etree
#~ print etree.tostring(book, pretty_print=True)
print book.ASIN,
print unicode(book.ItemAttributes.Author), ':',
print unicode(book.ItemAttributes.Title),
if hasattr(book.ItemAttributes, 'ListPrice'):
print unicode(book.ItemAttributes.ListPrice.FormattedPrice)
elif hasattr(book.OfferSummary, 'LowestUsedPrice'):
print u'(used from %s)' % book.OfferSummary.LowestUsedPrice.FormattedPrice