Using "bottlenose" - ( http://pypi.python.org/pypi/bottlenose/0.3.4 )
Here's my code:
import bottlenose,json
AMAZON_SECRET_KEY="XXX" AMAZON_ACCESS_KEY_ID = "XXX" AMAZON_ASSOC_TAG="XXX" tmd = "B00005UQVU" amazon = bottlenose.Amazon(AMAZON_ACCESS_KEY_ID, AMAZON_SECRET_KEY, AMAZON_ASSOC_TAG) ResponseGroup="Offers",SearchIndex="Books", IdType="ISBN", Style="http://xml2json-xslt.googlecode.com/svn/trunk/xml2json.xslt") response = amazon.ItemLookup(ItemId=tmd, ResponseGroup="Offers", Condition="Used", \ # MarketplaceDomain="????", SearchIndex="????", \ Style="http://xml2json-xslt.googlecode.com/svn/trunk/xml2json.xslt")print response d = json.loads(response) print d["ItemLookupResponse"]["Items"]["Item"]["OfferSummary"]["LowestUsedPrice"]
I would like to see the results from this page:
NOT this page:
2 minutes later I found it:
.. add Region="UK" into the bottlenose.Amazon() call.