J'ai obtenu le nom du produit et le prix le plus bas sur le site Amazon à l'aide de l'API, alors notez-le.
pip install bottlenose
pip install BeautifulSoup
# -*- coding: utf-8 -*-
import bottlenose
from BeautifulSoup import BeautifulSoup
import random
import time
from urllib2 import HTTPError
AWS_ACCESS_KEY_ID='******' #Obtenu depuis la console de gestion
AWS_SECRET_ACCESS_KEY='******' #Obtenu depuis la console de gestion
AWS_ASSOCIATE_TAG='******-22' #Inscription d'associé (affilié) requise
SearchIndex="Books" #Référence https://images-na.ssl-images-amazon.com/images/G/09/associates/paapi/dg/index.html?JPSearchIndexParamForItemsearch.html
Keywords="Python" #Mot-clé de recherche
def error_handler(err):
ex = err['exception']
if isinstance(ex, HTTPError) and ex.code == 503:
time.sleep(random.expovariate(0.1))
return True
amazon = bottlenose.Amazon(AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_ASSOCIATE_TAG,Region="JP",ErrorHandler=error_handler)
#Obtenez le nombre de pages de résultats
response = amazon.ItemSearch(
SearchIndex=SearchIndex,
Keywords=Keywords,
ResponseGroup="ItemIds",
ErrorHandler=error_handler)
soup=BeautifulSoup(response)
totalpages=int(soup.first('totalpages').text)
print "totalPages=",totalpages
#Obtenez chaque page
for page in range(totalpages) :
print "="*20,"page",page+1
if page >= 10: # max 10 pages
break
response = amazon.ItemSearch(
SearchIndex=SearchIndex,
Keywords=Keywords,
ResponseGroup="Small,OfferSummary",
ItemPage=page+1,
ErrorHandler=error_handler)
soup=BeautifulSoup(response)
items = soup.findAll('item')
for item in items:
print item.title.text ,
if item.offersummary and item.offersummary.lowestnewprice:
print item.offersummary.lowestnewprice.formattedprice.text,
print
Recommended Posts