https://github.com/montyanderson/amazon
A WIP Amazon product parser.
https://github.com/montyanderson/amazon
Last synced: 3 months ago
JSON representation
A WIP Amazon product parser.
- Host: GitHub
- URL: https://github.com/montyanderson/amazon
- Owner: montyanderson
- License: mit
- Created: 2016-10-29T14:11:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-29T15:16:43.000Z (over 8 years ago)
- Last Synced: 2025-01-18T00:41:09.074Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# amazon
A WIP Amazon product parser.
``` javascript
amazon.search("ipad")
.then(results => console.log(results));
``````
[ { title: 'Apple iPad 2 MC769LL/A 9.7-Inch 16GB (Black) 1395 - Certified Refurbished',
image: 'https://images-na.ssl-images-amazon.com/images/I/41juzl-6v0L._AC_US160_.jpg',
price: '$159.00',
definitons:
{ 'Display Size:': '9.7 inches',
'Operating System:': 'Apple iOS 4',
'Display Technology:': 'led' },
stars: 4 },
{ title: 'Apple iPad Air MD785LL/B 9.7-Inch 16GB Wi-Fi Tablet (Black with Space Gray)',
image: 'https://images-na.ssl-images-amazon.com/images/I/517yTZWi4uL._AC_US160_.jpg',
price: '$297.82',
definitons:
{ 'Display Size:': '9.7 inches',
'Operating System:': 'Apple iOS 7',
'Flash Memory Installed Size:': '16',
'Native Resolution:': '2048 x 1536',
'Display Technology:': 'LCD' },
stars: 4.5 },
{ title: 'Apple iPad Air 2 MH0W2LL/A 9.7-Inch 16GB HDD Tablet, Gold',
image: 'https://images-na.ssl-images-amazon.com/images/I/41Yel8ffbaL._AC_US160_.jpg',
price: '$341.05',
definitons:
{ 'Display Size:': '9.7 inches',
'Operating System:': 'Apple IOS 8',```