A simple API written in Python that scraps the F1 website for the current year drivers championship standings.
Returns all drivers in the FIA Formula 1 Championship of the current year with their position, points, name and surname, team, team color (updated 2024) and picture
Example:
The installation via Docker is pretty easy:
- Make sure Docker is installed;
- Download the repository;
- Open a terminal on the root folder of the repository;
- Run
docker compose up --build
and the API should be ready to go;
The manual installation can be done following the steps below:
- Make sure pip is installed;
- Download the repository;
- Open a terminal on the root folder of the repository;
- Run
pip install -r requirements.txt
and thenpython app.py
and the API should be working;