Amazon-Product-Data-Scraper is a nodejs package to get product information on amazon automatically using browser automation. It currently runs only on windows.
Installation
npm install amazon-product-data-scraper
Example
In this example we first import package, then we scraped data of product.
var amazon=require("amazon-product-data-scraper");
function get_data(response){
var data=response["body"]
console.log("product data",data)
}
amazon.product_info("product url",get_data)
Youtube Video
DataKund
datakund is needed for browser automation. As soon as this package is imported in code, automated browser will open up.
Import
var amazon=require("amazon-product-data-scraper");
Get Product Data
amazon.get_video_info("product url")