zoukankan      html  css  js  c++  java
  • Amazon-Scraper API

    After watching Python Web Video. I planned to write a small scraper to fetch the price and promotion of the items in my Amazon Cart. 

    Amazon did not allow arbitary access to their web except its own APIs. 

    It takes me some time to become An Associate account and a AWS account, it requires that you have your own website.  

    One note : 

        Your Associate ID works only in the locale in which you register. If you want to be an Associate in more than one locale, you must register separately for each locale.

    Once you have the Associate Tag and AWS Access Keys, you can try the Product Advertising API Scratchpad(websevices.amazon.com/scratchpas/index.html) to do some real-time scrape. 

    example:

    ===================================================================

    from amazon.api import AmazonAPI
    import bottlenose.api

    amazon = AmazonAPI(AMAZON_ACCESS_KEY,AMAZON_SECRET_KEY,AMAZON_ASSOC_TAG,region=AMAZON_REGION) # ** constuct the API by inputing your own AWS infos

    product = amazon.lookup(ItemId=str(item)) #** get the full infos to the product, the return type is a class

    print product.title, product.color,product.price_and_currency,product.publisher,product.availability

  • 相关阅读:
    alias这个命令还是很有用的
    为什么不推荐用破解版的winrar
    chrome headless
    关于PDF的一些书籍
    PDF的一些工具
    3DPDF是个什么东西?
    你可能不知道的pdf的功能
    为什么一些公司把dwg文件转化为pdf
    关于pdf阅读器的选择
    接外包怎么保护自己的作品
  • 原文地址:https://www.cnblogs.com/szzshi/p/6944665.html
Copyright © 2011-2022 走看看