Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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`.