This project provide API server that implements some functionalities related to chart drawing based on database data
Provided functionalities:
- Insert point list(
/insert-points
) - Delete all existing points from database(
/delete-all-points
) - Show generated chart in runtime(
/chart
)
For more information (Swagger docs) visit the /docs
.
- Python 3.9+
python3.9 -m venv venv
source venv/bin/active
pip install -r requirements.txt
Before startup ensure that you already have configured env. After startup application will be started on the localhost:8000
uvicorn plotter.main:application