Skip to content

This project serves as an illustration of RESTful APIs implemented using FastAPI. It encompasses all the fundamental CRUD (Create, Read, Update, Delete) operations commonly associated with web APIs.

Notifications You must be signed in to change notification settings

chetandatta77/fastapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

fastapi

Commands

Instal Fast API - pip install fastapi "uvicorn[standard]"

Run the Fast API

 python -m univorn main:app --reload

 uvicorn main:app --reload
  • main is name of our module

  • app is the the instance of our application

  • reload will make the server automatically if there are any changes

  • Incase if it doesn't work

Port Information

Default port - http://localhost:8000

Swagger UI - http://localhost:8000/docs

API Documentation - http://localhost:8000/redoc

Status Codes

100-199 - Informational Responses

200-299 - Successfull Responses

300-399 - Redirectional Responses

400-499 - Client Error Responses

500-599 - Server Error Responses

About

This project serves as an illustration of RESTful APIs implemented using FastAPI. It encompasses all the fundamental CRUD (Create, Read, Update, Delete) operations commonly associated with web APIs.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages