diff --git a/docs/features.md b/docs/features.md
index 28968e8bc..c4e1598d8 100644
--- a/docs/features.md
+++ b/docs/features.md
@@ -27,7 +27,7 @@ Interactive API documentation and exploration web user interfaces. As the framew
It's all based on standard **Python 3.6 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 tutorial section: [Python types](tutorial/python-types.md).
+If you need a 2 minute refresher of how to use Python types (even if you don't use FastAPI), check the tutorial section: [Python types](python-types.md).
You write standard Python with types:
diff --git a/docs/img/index/index-01-swagger-ui-simple.png b/docs/img/index/index-01-swagger-ui-simple.png
index 71578341e..5b591a6a7 100644
Binary files a/docs/img/index/index-01-swagger-ui-simple.png and b/docs/img/index/index-01-swagger-ui-simple.png differ
diff --git a/docs/img/index/index-02-redoc-simple.png b/docs/img/index/index-02-redoc-simple.png
index ec2c1e31a..a3b0e53b0 100644
Binary files a/docs/img/index/index-02-redoc-simple.png and b/docs/img/index/index-02-redoc-simple.png differ
diff --git a/docs/img/index/index-03-swagger-02.png b/docs/img/index/index-03-swagger-02.png
index 2f4beca5f..1b4040fde 100644
Binary files a/docs/img/index/index-03-swagger-02.png and b/docs/img/index/index-03-swagger-02.png differ
diff --git a/docs/img/index/index-04-swagger-03.png b/docs/img/index/index-04-swagger-03.png
index 9d4e4d1ba..7f1ead67b 100644
Binary files a/docs/img/index/index-04-swagger-03.png and b/docs/img/index/index-04-swagger-03.png differ
diff --git a/docs/img/index/index-05-swagger-04.png b/docs/img/index/index-05-swagger-04.png
index 2dfef6bf7..218fbb0ac 100644
Binary files a/docs/img/index/index-05-swagger-04.png and b/docs/img/index/index-05-swagger-04.png differ
diff --git a/docs/img/index/index-06-redoc-02.png b/docs/img/index/index-06-redoc-02.png
index 45c55e663..7dcb9cdf1 100644
Binary files a/docs/img/index/index-06-redoc-02.png and b/docs/img/index/index-06-redoc-02.png differ
diff --git a/docs/img/pycharm-completion.png b/docs/img/pycharm-completion.png
index 4768a9405..6cd204cd4 100644
Binary files a/docs/img/pycharm-completion.png and b/docs/img/pycharm-completion.png differ
diff --git a/docs/img/tutorial/python-types/image01.png b/docs/img/python-types/image01.png
similarity index 100%
rename from docs/img/tutorial/python-types/image01.png
rename to docs/img/python-types/image01.png
diff --git a/docs/img/tutorial/python-types/image02.png b/docs/img/python-types/image02.png
similarity index 100%
rename from docs/img/tutorial/python-types/image02.png
rename to docs/img/python-types/image02.png
diff --git a/docs/img/tutorial/python-types/image03.png b/docs/img/python-types/image03.png
similarity index 100%
rename from docs/img/tutorial/python-types/image03.png
rename to docs/img/python-types/image03.png
diff --git a/docs/img/tutorial/python-types/image04.png b/docs/img/python-types/image04.png
similarity index 100%
rename from docs/img/tutorial/python-types/image04.png
rename to docs/img/python-types/image04.png
diff --git a/docs/img/tutorial/python-types/image05.png b/docs/img/python-types/image05.png
similarity index 100%
rename from docs/img/tutorial/python-types/image05.png
rename to docs/img/python-types/image05.png
diff --git a/docs/img/tutorial/python-types/image06.png b/docs/img/python-types/image06.png
similarity index 100%
rename from docs/img/tutorial/python-types/image06.png
rename to docs/img/python-types/image06.png
diff --git a/docs/img/vscode-completion.png b/docs/img/vscode-completion.png
index f0d1c5ddf..ba6e22b02 100644
Binary files a/docs/img/vscode-completion.png and b/docs/img/vscode-completion.png differ
diff --git a/docs/index.md b/docs/index.md
index 3fc8aa7d3..2d743b52a 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -72,26 +72,42 @@ from fastapi import FastAPI
app = FastAPI()
-@app.get('/')
+
+@app.get("/")
def read_root():
- return {'hello': 'world'}
+ return {"Hello": "World"}
+
+
+@app.get("/items/{item_id}")
+def read_item(item_id: int, q: str = None):
+ return {"item_id": item_id, "q": q}
```
+
+Or use async def
...
-Or if your code uses `async` / `await`, use `async def`:
+If your code uses `async` / `await`, use `async def`:
-```Python hl_lines="6"
+```Python hl_lines="7 12"
from fastapi import FastAPI
app = FastAPI()
-@app.get('/')
+
+@app.get("/")
async def read_root():
- return {'hello': 'world'}
+ return {"Hello": "World"}
+
+
+@app.get("/items/{item_id}")
+async def read_item(item_id: int, q: str = None):
+ return {"item_id": item_id, "q": q}
```
-!!! note
- If you don't know, check the _"In a hurry?"_ section about `async` and `await` in the docs.
+**Note**:
+
+If you don't know, check the _"In a hurry?"_ section about `async` and `await` in the docs.
+
* Run the server with:
@@ -99,23 +115,34 @@ async def read_root():
uvicorn main:app --debug
```
-!!! note
- The command `uvicorn main:app` refers to:
+
+About the command uvicorn main:app --debug
...
+
+The command `uvicorn main:app` refers to:
- * `main`: the file `main.py` (the Python "module").
- * `app`: the object created inside of `main.py` with the line `app = FastAPI()`.
- * `--debug`: make the server restart after code changes. Only do this for development.
+* `main`: the file `main.py` (the Python "module").
+* `app`: the object created inside of `main.py` with the line `app = FastAPI()`.
+* `--debug`: make the server restart after code changes. Only do this for development.
+
+
### Check it
-Open your browser at http://127.0.0.1:8000.
+Open your browser at http://127.0.0.1:8000/items/5?q=somequery.
You will see the JSON response as:
```JSON
-{"hello": "world"}
+{"item_id": 5, "q": "somequery"}
```
+You already created an API that:
+
+* Receives HTTP requests in the _paths_ `/` and `/items/{item_id}`.
+* Both _paths_ take `GET` operations.
+* The _path_ `/items/{item_id}` has a _path parameter_ `item_id` that should be an `int`.
+* The _path_ `/items/{item_id}` has an optional _query parameter_ `q` that is a `str`.
+
### Interactive API docs
Now go to http://127.0.0.1:8000/docs.
@@ -135,14 +162,12 @@ You will see the alternative automatic documentation (provided by http://127.0.0.1:8000/docs.
-* The interactive API documentation will be automatically updated, including the new query, and body:
+* The interactive API documentation will be automatically updated, including the new body:

@@ -245,13 +275,13 @@ item: Item
Coming back to the previous code example, **FastAPI** will:
-* Validate that there is an `item_id` in the path.
-* Validate that the `item_id` is of type `int`.
+* Validate that there is an `item_id` in the path for `GET` and `PUT` requests.
+* Validate that the `item_id` is of type `int` for `GET` and `PUT` requests.
* If it is not, the client will see a useful, clear error.
-* Check if there is an optional query parameter named `q` (as in `http://127.0.0.1:8000/items/foo?q=somequery`).
+* Check if there is an optional query parameter named `q` (as in `http://127.0.0.1:8000/items/foo?q=somequery`) for `GET` requests.
* As the `q` parameter is declared with `= None`, it is optional.
- * Without the `None` it would be required (as is the body).
-* Read the body as JSON:
+ * Without the `None` it would be required (as is the body in the case with `PUT`).
+* For `PUT` requests to `/items/{item_id}`, Read the body as JSON:
* Check that it has a required attribute `name` that should be a `str`.
* Check that is has a required attribute `price` that has to be a `float`.
* Check that it has an optional attribute `is_offer`, that should be a `bool`, if present.
@@ -270,7 +300,7 @@ We just scratched the surface, but you already get the idea of how it all works.
Try changing the line with:
```Python
- return {"item_name": item.name, "item_id": item_id, "query": q}
+ return {"item_name": item.name, "item_id": item_id}
```
...from:
@@ -287,6 +317,7 @@ Try changing the line with:
...and see how your editor will auto-complete the attributes and know their types:
+

diff --git a/docs/python-types.md b/docs/python-types.md
new file mode 100644
index 000000000..9483d92a2
--- /dev/null
+++ b/docs/python-types.md
@@ -0,0 +1,288 @@
+**Python 3.6+** has support for optional "type hints".
+
+These **"type hints"** are a new syntax (since Python 3.6+) that allow declaring the type of a variable.
+
+By declaring types for your variables, editors and tools can give you better support.
+
+This is just a **quick tutorial / refresher** about Python type hints. It covers only the minimum necessary to use them with **FastAPI**... which is actually very little.
+
+**FastAPI** is all based on these type hints, they give it many advantages and benefits.
+
+But even if you never use **FastAPI**, you would benefit from learning a bit about them.
+
+!!! note
+ If you are a Python expert, and you already know everything about type hints, skip to the next chapter.
+
+## Motivation
+
+Let's start with a simple example:
+
+```Python
+{!./src/python_types/tutorial001.py!}
+```
+
+Calling this program outputs:
+
+```
+John Doe
+```
+
+The function does the following:
+
+* Takes a `fist_name` and `last_name`.
+* Converts the first letter of each one to upper case with `title()`.
+* Concatenates them with a space in the middle.
+
+```Python hl_lines="2"
+{!./src/python_types/tutorial001.py!}
+```
+
+### Edit it
+
+It's a very simple program.
+
+But now imagine that you were writing it from scratch.
+
+At some point you would have started the definition of the function, you had the parameters ready...
+
+But then you have to call "that method that converts the first letter to upper case".
+
+Was it `upper`? Was it `uppercase`? `first_uppercase`? `capitalize`?
+
+Then, you try with the old programer's friend, editor autocompletion.
+
+You type the first parameter of the function, `first_name`, then a dot (`.`) and then hit `Ctrl+Space` to trigger the completion.
+
+But, sadly, you get nothing useful:
+
+
+
+### Add types
+
+Let's modify a single line from the previous version.
+
+We will change exactly this fragment, the parameters of the function, from:
+
+```Python
+ first_name, last_name
+```
+
+to:
+
+```Python
+ first_name: str, last_name: str
+```
+
+That's it.
+
+Those are the "type hints":
+
+```Python hl_lines="1"
+{!./src/python_types/tutorial002.py!}
+```
+
+That is not the same as declaring default values like would be with:
+
+```Python
+ first_name="john", last_name="doe"
+```
+
+It's a different thing.
+
+We are using colons (`:`), not equals (`=`).
+
+And adding type hints normally doesn't change what happens from what would happen without them.
+
+But now, imagine you are again in the middle of creating that function, but with type hints.
+
+At the same point, you try to trigger the autocomplete with `Ctrl+Space` and you see:
+
+
+
+With that, you can scroll, seeing the options, until you find the one that "rings a bell":
+
+
+
+## More motivation
+
+Check this function, it already has type hints:
+
+```Python hl_lines="1"
+{!./src/python_types/tutorial003.py!}
+```
+
+Because the editor knows the types of the variables, you don't only get completion, you also get error checks:
+
+
+
+Now you know that you have to fix it, convert `age` to a string with `str(age)`:
+
+```Python hl_lines="2"
+{!./src/python_types/tutorial004.py!}
+```
+
+
+## Declaring types
+
+You just saw the main place to declare type hints. As function parameters.
+
+This is also the main place you would use them with **FastAPI**.
+
+### Simple types
+
+You can declare all the standard Python types, not only `str`.
+
+You can use, for example:
+
+* `int`
+* `float`
+* `bool`
+* `bytes`
+
+```Python hl_lines="1"
+{!./src/python_types/tutorial005.py!}
+```
+
+### Types with subtypes
+
+There are some data structures that can contain other values, like `dict`, `list`, `set` and `tuple`. And the internal values can have their own type too.
+
+To declare those types and the subtypes, you can use the standard Python module `typing`.
+
+It exists specifically to support these type hints.
+
+#### Lists
+
+For example, let's define a variable to be a `list` of `str`.
+
+From `typing`, import `List` (with a capital `L`):
+
+```Python hl_lines="1"
+{!./src/python_types/tutorial006.py!}
+```
+
+Declare the variable, with the same colon (`:`) syntax.
+
+As the type, put the `List`.
+
+As the list is a type that takes a "subtype", you put the subtype in square brackets:
+
+```Python hl_lines="4"
+{!./src/python_types/tutorial006.py!}
+```
+
+That means: "the variable `items` is a `list`, and each of the items in this list is a `str`".
+
+By doing that, your editor can provide support even while processing items from the list.
+
+Without types, that's almost impossible to achieve:
+
+
+
+Notice that the variable `item` is one of the elements in the list `items`.
+
+And still, the editor knows it is a `str`, and provides support for that.
+
+#### Tuples and Sets
+
+You would do the same to declare `tuple`s and `set`s:
+
+```Python hl_lines="1 4"
+{!./src/python_types/tutorial007.py!}
+```
+
+This means:
+
+* The variable `items_t` is a `tuple`, and each of its items is an `int`.
+* The variable `items_s` is a `set`, and each of its items is of type `bytes`.
+
+#### Dicts
+
+To define a `dict`, you pass 2 subtypes, separated by commas.
+
+The first subtype is for the keys of the `dict`.
+
+The second subtype is for the values of the `dict`:
+
+```Python hl_lines="1 4"
+{!./src/python_types/tutorial008.py!}
+```
+
+This means:
+
+* The variable `prices` is a `dict`:
+ * The keys of this `dict` are of type `str` (let's say, the name of each item).
+ * The values of this `dict` are of type `float` (let's say, the price of each item).
+
+
+### Classes as types
+
+You can also declare a class as the type of a variable.
+
+Let's say you have a class `Person`, with a name:
+
+```Python hl_lines="1 2 3"
+{!./src/python_types/tutorial009.py!}
+```
+
+Then you can declare a variable to be of type `Person`:
+
+```Python hl_lines="6"
+{!./src/python_types/tutorial009.py!}
+```
+
+And then, again, you get all the editor support:
+
+
+
+
+## Pydantic models
+
+Pydantic is a Python library to perform data validation.
+
+You declare the "shape" of the data as classes with attributes.
+
+And each attribute has a type.
+
+Then you create an instance of that class with some values and it will validate the values, convert them to the appropriate type (if that's the case) and give you an object with all the data.
+
+And you get all the editor support with that resulting object.
+
+Taken from the official Pydantic docs:
+
+```Python
+{!./src/python_types/tutorial010.py!}
+```
+
+!!! info
+ To learn more about Pydantic, check its docs.
+
+**FastAPI** is all based on Pydantic.
+
+You will see a lot more of all this in practice in the Tutorial - User Guide (the next section).
+
+
+## Type hints in **FastAPI**
+
+**FastAPI** takes advantage of these type hints to do several things.
+
+With **FastAPI** you declare parameters with type hints and you get:
+
+* **Editor support**.
+* **Type checks**.
+
+...and **FastAPI** uses the same declarations to:
+
+* **Define requirements**: from request path parameters, query parameters, headers, bodies, dependencies, etc.
+* **Convert data**: from the request to the required type.
+* **Validate data**: coming from each request:
+ * Generating **automatic errors** returned to the client when the data is invalid.
+* **Document** the API using OpenAPI:
+ * which is then used by the automatic interactive documentation user interfaces.
+
+This might all sound abstract. Don't worry. You'll see all this in action in the Tutorial - User Guide (the next section).
+
+The important thing is that by using standard Python types, in a single place (instead of adding more classes, decorators, etc), **FastAPI** will do a lot of the work for you.
+
+!!! info
+ If you already went through all the tutorial and came back to see more about types, a good resource is the "cheat sheet" from `mypy`.
\ No newline at end of file
diff --git a/mkdocs.yml b/mkdocs.yml
index 2b0bce0f6..26cd6f9bc 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -16,9 +16,9 @@ edit_uri: ""
nav:
- FastAPI: 'index.md'
- Features: 'features.md'
+ - Python types intro: 'python-types.md'
- Tutorial - User Guide:
- Tutorial - User Guide - Intro: 'tutorial/intro.md'
- - Python types intro: 'tutorial/python-types.md'
- First Steps: 'tutorial/first-steps.md'
- Path Parameters: 'tutorial/path-params.md'
- Query Parameters: 'tutorial/query-params.md'
@@ -51,11 +51,9 @@ nav:
- OAuth2 with Password (and hashing), Bearer with JWT tokens: 'tutorial/security/oauth2-jwt.md'
- Bigger Applications - Multiple Files: 'tutorial/bigger-applications.md'
- Application Configuration: 'tutorial/application-configuration.md'
- - Extra Starlette options: 'tutorial/extra-starlette.md'
-
+ - Extra Starlette options: 'tutorial/extra-starlette.md'
- Concurrency and async / await: 'async.md'
- Deployment: 'deployment.md'
-
markdown_extensions:
- markdown.extensions.codehilite:
@@ -64,3 +62,4 @@ markdown_extensions:
base_path: docs
- admonition
- codehilite
+ - extra