1.0.2 • Published 3 years ago

amazon-product-data-scraper v1.0.2

Weekly downloads
1
License
ISC
Repository
-
Last release
3 years ago

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

npm.io

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")

Contact Us