Skip to content
This repository has been archived by the owner on Apr 20, 2021. It is now read-only.

Latest commit

 

History

History
45 lines (29 loc) · 936 Bytes

README.md

File metadata and controls

45 lines (29 loc) · 936 Bytes

Python project for NURE university

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.

Prerequisites

  • Python 3.9+

Setup

python3.9 -m venv venv
source venv/bin/active
pip install -r requirements.txt

Startup

Before startup ensure that you already have configured env. After startup application will be started on the localhost:8000

uvicorn plotter.main:application

Project images

Index page

Index page image

Documentation page

Project documentation image

Chart page

Chart page image