amazonscraper
v0.0.0
Published
amazon scraper using node.js
Downloads
3
Readme
amazonscraper -- Simplified amazon scraper client
Super simple to use
amazonscraper is designed to be the simplest way possible to extract book data from amazon passing ISBN.
Install :
npm install amazonscraper
Example :
//ISBN = 9781559391535
var amazone = require('amazonscraper');
var am = amazone.getBookInfo("9781559391535" , function(bookArray){
console.log(bookArray) ;
} );