I am using bottlenose to extract product prices from Amazon, things are doing OK for extraction from Amazon.com
, I tried to expand the search to Amazon.co.uk
, I applied an associate account in Amazon.co.uk
, and obtained a new associate-id.
amazon_search = bottlenose.Amazon(str(aws_key.aws_access_key),
str(aws_key.aws_secret_key),
str(aws_key.aws_associate_key),
MaxQPS=0.9)
item_details = BeautifulStoneSoup(amazon_search.ItemLookup(ItemId=item_asin.text,ResponseGroup="OfferSummary")
I used the code above, Why the output is the same for Amazon.com
and Amazon.co.uk
even after I changed the associate_key
?