A simple read-only REST API written in Python. WebServer is provided by FastAPI. Database migration is provided by Alembic.
Tested on Python 3.9 on GNU/Linux.
Create the usual virtual environment and install requirements accordingly. For running web server, execute:
$ uvicorn main:appFor development, add --reload parameter to let it watch changes inside workspace.
$ uvicorn main:app --reload