From d227603a5903887c3a2758efc2632cfc1f1834ea Mon Sep 17 00:00:00 2001 From: Julio Martins <49854105+eujuliu@users.noreply.github.com> Date: Mon, 20 Mar 2023 16:41:49 -0300 Subject: [PATCH] feat: added description and content at FastAPI on Python Roadmap (#3678) --- .../python/content/106-python-frameworks/102-fastapi.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/data/roadmaps/python/content/106-python-frameworks/102-fastapi.md b/src/data/roadmaps/python/content/106-python-frameworks/102-fastapi.md index 0d4abccb6..ecf51fda4 100644 --- a/src/data/roadmaps/python/content/106-python-frameworks/102-fastapi.md +++ b/src/data/roadmaps/python/content/106-python-frameworks/102-fastapi.md @@ -1,2 +1,5 @@ # FastAPI +FastAPI is a Web framework for developing RESTful APIs in Python. FastAPI is based on Pydantic and type hints to validate, serialize, and deserialize data and automatically auto-generate OpenAPI documents. + +- [Official Documentation](https://fastapi.tiangolo.com/)