From a891f8e7f7e688fc1f513ab41005de533a927912 Mon Sep 17 00:00:00 2001 From: Redowan Delowar Date: Sun, 7 Jun 2020 10:21:16 +0600 Subject: [PATCH] Added fastAPI to the list of app frameworks --- docs/implementations.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/implementations.rst b/docs/implementations.rst index d0689cd0..a1237ab9 100644 --- a/docs/implementations.rst +++ b/docs/implementations.rst @@ -65,3 +65,11 @@ Starlette Starlette is a minimalist ASGI library for writing against basic but powerful ``Request`` and ``Response`` classes. Supports HTTP. + +FastAPI +--------- + +https://github.com/tiangolo/fastapi + +FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints. It uses `Starlette `_ and `Pydantic `_ +underneath.