Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/philipperemy/idealwine-wine-prices
API to retrieve quotes from daily wine auctions
https://github.com/philipperemy/idealwine-wine-prices
Last synced: 15 days ago
JSON representation
API to retrieve quotes from daily wine auctions
- Host: GitHub
- URL: https://github.com/philipperemy/idealwine-wine-prices
- Owner: philipperemy
- Created: 2013-09-01T13:17:25.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-12-25T01:43:38.000Z (almost 6 years ago)
- Last Synced: 2024-10-07T02:40:51.050Z (about 1 month ago)
- Language: Java
- Homepage:
- Size: 40 MB
- Stars: 4
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Price Scraper Tool - Idealwine.com (python)
*Ready to use tool to retrieve average prices from daily wine auctions.*
## Get Started
Beforehand, create an account on the platform. Note down the user and password as you will need them later.
```bash
git clone [email protected]:philipperemy/Idealwine-API.git
cd Idealwine-API/python# Virtual environment: Recommended
virtualenv -p python3.6 venv
source venv/bin/activate
pip install -r requirements.txt# Install ChromeDriver here:
# http://chromedriver.chromium.org/downloads# Make sure Selenium and all the python deps are properly installed (including ChromeDriver) before running the main script.
export IDEALWINE_USER=; export IDEALWINE_PASS=; python main.py
```All the screenshots will be available in the folder `screenshots`. A summary containing all the prices will be dumped in `output.csv`.
## Screenshot Example
Example: Quotations of Chateau Pavie 1er Grand Cru Classee 1983 indexed by time. Y-axis unit is EUR.## Java Version
The first implementation was written in pure Java. It's not maintained anymore. Source codes are located in `old-java`.