Requires Python 3.7 or 3.8.
Requires Google Chrome.
Requires ChromeDriver. ChromeDriver version must match Google Chrome version installed. Include the ChromeDriver location in your PATH variable. Download at: https://chromedriver.chromium.org/downloads
Create a virtual environment with
python3 -m venv venvOn Windows, activate the venv with
\venv\Scripts\activate On Unix, activate with
. venv/bin/activateUpgrade to the latest pip with
pip install --upgrade pipInstall required libraries (make sure pip is latest version) with
pip install -r requirements.txtcreate the database with
sqlite3 src/data/autos.sqlite
sqlite> .read src/data/create-db.sql
run with
PYTHONPATH=. python3 src/main.py