Skip to content

Add FastAPI to the web frameworks section #966

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/scenarios/web.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,24 @@ Masonite comes with a lot of functionality out of the box including a powerful I

Masonite is perfect for beginners or experienced developers alike and works hard to be fast and easy from install through to deployment. Try it once and you’ll fall in love.

FastAPI
-------

`FastAPI <https://fastapi.tiangolo.com>`_ is a modern web framework for building
APIs with Python 3.6+.

It has very high performance as it is based on `Starlette <https://www.starlette.io>`_
and `Pydantic <https://pydantic-docs.helpmanual.io>`_.

FastAPI takes advantage of standard Python type declarations in function parameters
to declare request parameters and bodies, perform data conversion (serialization,
parsing), data valdiation, and automatic API documentation with **OpenAPI 3**
(including **JSON Schema**).

It includes tools and utilities for security and authentication (including OAuth2 with JWT
tokens), a dependency injection system, automatic generation of interactive API
documentation, and other features.


***********
Web Servers
Expand Down