REST API with FastAPI and SQLite3 py 3.10
First, to install all dependencies, in ./src/:
python -m pip install -r requirements.txt
Second, into the ./src/ folder, to run the uvicorn server, copypaste this:
uvicorn src.main:app --reload
Or
uvicorn main:app --reload
> Now, you can test the REST API.
