├── .gitignore ├── README.md ├── download_data.py ├── evaluate.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | output.xlsx 3 | plots/ 4 | ~$* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hutauf/vine-prices-estimation/HEAD/README.md -------------------------------------------------------------------------------- /download_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hutauf/vine-prices-estimation/HEAD/download_data.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hutauf/vine-prices-estimation/HEAD/evaluate.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium 2 | pandas 3 | tqdm 4 | XlsxWriter 5 | --------------------------------------------------------------------------------