Easy public vehicle lookup
This tool uses Seattle Government's public data API, located here: https://data.seattle.gov/City-Business/Active-Fleet-Complement/enxu-fgzb
Licenses are looked up in the dataset and if a vehicle is found, that data is displayed.
Build the image with docker build -t <tag> .
. Run it with docker run -p 5000:5000 <tag>
.
- Install a python virtual environment:
python3 -m venv venv
- Activate the virtual environment:
source venv/bin/activate
- Install dependencies:
pip install -r requirements-dev.txt
- Install the pre-commit hook:
pre-commit install
- Run the app:
cd src; FLASK_DEBUG=1 flask run
- Make changes and contribute 🙌