docs/en/docs/features.md
FastAPI gives you the following:
Interactive API documentation and exploration web user interfaces. As the framework is based on OpenAPI, there are multiple options, 2 included by default.
It's all based on standard Python type declarations (thanks to Pydantic). No new syntax to learn. Just standard modern Python.
If you need a 2 minute refresher of how to use Python types (even if you don't use FastAPI), check the short tutorial: Python Types.
You write standard Python with types:
from datetime import date
from pydantic import BaseModel
# Declare a variable as a str
# and get editor support inside the function
def main(user_id: str):
return user_id
# A Pydantic model
class User(BaseModel):
id: int
name: str
joined: date
That can then be used like:
my_user: User = User(id=3, name="John Doe", joined="2018-07-19")
second_user_data = {
"id": 4,
"name": "Mary",
"joined": "2018-11-30",
}
my_second_user: User = User(**second_user_data)
/// note
**second_user_data means:
Pass the keys and values of the second_user_data dict directly as key-value arguments, equivalent to: User(id=4, name="Mary", joined="2018-11-30")
///
All the framework was designed to be easy and intuitive to use, all the decisions were tested on multiple editors even before starting development, to ensure the best development experience.
In the Python developer surveys, it's clear that one of the most used features is "autocompletion".
The whole FastAPI framework is based to satisfy that. Autocompletion works everywhere.
You will rarely need to come back to the docs.
Here's how your editor might help you:
You will get completion in code you might even consider impossible before. As for example, the price key inside a JSON body (that could have been nested) that comes from a request.
No more typing the wrong key names, coming back and forth between docs, or scrolling up and down to find if you finally used username or user_name.
It has sensible defaults for everything, with optional configurations everywhere. All the parameters can be fine-tuned to do what you need and to define the API you need.
But by default, it all "just works".
Validation for most (or all?) Python data types, including:
dict).list) defining item types.str) fields, defining min and max lengths.int, float) with min and max values, etc.Validation for more exotic types, like:
All the validation is handled by the well-established and robust Pydantic.
Security and authentication integrated. Without any compromise with databases or data models.
All the security schemes defined in OpenAPI, including:
Plus all the security features from Starlette (including session cookies).
All built as reusable tools and components that are easy to integrate with your systems, data stores, relational and NoSQL databases, etc.
FastAPI includes an extremely easy to use, but extremely powerful <dfn title='also known as "components", "resources", "services", "providers"'><strong>Dependency Injection</strong></dfn> system.
Or in other way, no need for them, import and use the code you need.
Any integration is designed to be so simple to use (with dependencies) that you can create a "plug-in" for your application in 2 lines of code using the same structure and syntax used for your path operations.
FastAPI is fully compatible with (and based on) Starlette. So, any additional Starlette code you have, will also work.
FastAPI is actually a sub-class of Starlette. So, if you already know or use Starlette, most of the functionality will work the same way.
With FastAPI you get all of Starlette's features (as FastAPI is just Starlette on steroids):
FastAPI is fully compatible with (and based on) Pydantic. So, any additional Pydantic code you have, will also work.
Including external libraries also based on Pydantic, as <abbr title="Object-Relational Mapper">ORM</abbr>s, <abbr title="Object-Document Mapper">ODM</abbr>s for databases.
This also means that in many cases you can pass the same object you get from a request directly to the database, as everything is validated automatically.
The same applies the other way around, in many cases you can just pass the object you get from the database directly to the client.
With FastAPI you get all of Pydantic's features (as FastAPI is based on Pydantic for all the data handling):
typing’s List and Dict, etc.