FastAPI is a modern, fast (high-performance), web framework for building APIs with Python. In this repository I've created API's for SQLite database CRUD operation using FastAPI.
I have used SQLAlchemy ORM to deal with database tables. Project contains usage of Http Responses according to their Http request type.
pip install virtualenv
virtualenv venv
For Windows: 1) cd venv/scripts
2) activate
For Linux: source venv/bin/activate
cd ..
pip install -r requirements.txt
uvicorn index:app --reload
deactivate