Amazon 爬虫。从 Amazon 搜索结果中爬取产品或从特定产品中爬取评论
Very useful tool that is able to extract almost same amount of data as the official Amazon Product API
Product List
Review List
Note:
Possible errors
Install from NPM
$ npm i -g amazon-buddy
Install from YARN
$ yarn global add amazon-buddy
Terminal
…
Scrape 40 products from the amazon search result by using keyword "vacuum cleaner" and save result to the CSV file
$ amazon-buddy products -k 'vacuum cleaner' -n 40 --filetype csv
Output: 1552945544582_products.csv
Scrape 40 products from the amazon search result by using keyword "vacuum cleaner" and display raw result in the terminal
$ amazon-buddy products -k 'vacuum cleaner' -n 40 --filetype ''
Scrape 40 products from the amazon search result by using keyword "vacuum cleaner" from the Amazon.NL(Netherlands) and display raw result in the terminal
$ amazon-buddy products -k 'vacuum cleaner' -n 40 --filetype '' --country NL
Scrape 40 products from the amazon search result from the category "Apps & Games" by using keyword "games" from the Amazon.ES(SPAIN) and display raw result in the terminal
$ amazon-buddy products -k 'games' -n 40 --filetype '' --country ES --category mobile-apps
Scrape 100 reviews from a product by using ASIN. NOTE: ASIN is a unique amazon product ID, it can be found in product URL or if you have scraped product list with our tool you will find it in the CSV/JSON files
$ amazon-buddy reviews B01GW3H3U8 -n 100
Output: reviews(B01GW3H3U8)_1589470878252
Scrape 300 products from the "Xbox one" keyword with rating minimum rating 3 and maximum rating 4 and save everything to the CSV file
$ amazon-buddy products -k 'xbox one' -n 300 --min-rating 3 --max-rating 4
Output: 1552945544582_products.csv
Show list of all available countries
$ amazon-buddy countries
Output:
Show list of all available categories from the Amazon.CO.UK
$ amazon-buddy categories --country GB
Output:
.products() - product search
.reviews() - reviews search
.asin() - single product details
.categories() - available categories
…
…
…
…
…
…
…
MIT
Free Software
暂无开放 Issues,或尚未同步最近议题。