Crud With Fastapi
Crud With Fastapi
Table of Contents
1. Installation
2. Instruction
3. Project Motivation
4. File Descriptions
Installation
All the libraries required for running the app are listed in the requirement.txt file. For installing
these libraries, only run this comand with Python 3 in root path:
Instruction
To run the API, you only have to run the following command in the root path:
```
uvicorn api:app
```
Project Motivation
This is a beginner guide to deploy your first API with FlastAPI. Here, we build the CRUD (Create,
Read, Update and Delete). To practice, we have a coffee shop menu to use the CRUD methods.
File Descriptions
.
├── readme.md
├── api.py : All API's app
└── requirements.txt