Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 371 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 371 Bytes

FastAPI CRUD example

I made this little example to show how easily you make a REST api with basic CRUD operation with FastAPI and SQLAlchemy.

Setup dev environement

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

Run the API

python -m uvicorn main:app