0% found this document useful (0 votes)
7 views1 page

Crud With Fastapi

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views1 page

Crud With Fastapi

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

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:

$ pip install -r requirements.txt

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

You might also like