Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/at1as/price-tracker
Simple script to fetch current price of items on Amazon and archive historical prices
https://github.com/at1as/price-tracker
amazon golang price-tracker scraper script
Last synced: about 2 months ago
JSON representation
Simple script to fetch current price of items on Amazon and archive historical prices
- Host: GitHub
- URL: https://github.com/at1as/price-tracker
- Owner: at1as
- Created: 2017-10-22T21:17:58.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-22T21:18:26.000Z (about 7 years ago)
- Last Synced: 2024-06-20T03:38:28.121Z (7 months ago)
- Topics: amazon, golang, price-tracker, scraper, script
- Language: Go
- Size: 2.93 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Price Tracker
Simple script to fetch current price of items on Amazon and archive historical prices
### Usage
Edit `items.json` with a key value list of the item name and it's URL on Amazon
```
$ go run main.go
```### Output
```
atlas$ go run main.go
2017/10/22 14:24:29 Fetching today's prices...2017/10/22 14:24:32 Today's price for "Seagate 8 TB Hard Drive" is $169.99
2017/10/22 14:24:32 The Average price for this item was $169.99 over 2 samples
2017/10/22 14:24:32 The max price for this item was $169.99 on 2017-10-21
2017/10/22 14:24:32 The min price for this item was $169.99 on 2017-10-212017/10/22 14:24:34 Today's price for "Western Digital 8 TB Hard Drive" is $198.99
2017/10/22 14:24:34 The Average price for this item was $198.99 over 2 samples
2017/10/22 14:24:34 The max price for this item was $198.99 on 2017-10-21
2017/10/22 14:24:34 The min price for this item was $198.99 on 2017-10-21
```### TODO
* Provide range over which average price samples span
* tests### Notes
* Build with go1.6.2 on macOS 10.11