diff --git a/README.md b/README.md
index 2be4bf731..00c51f8e2 100644
--- a/README.md
+++ b/README.md
@@ -18,9 +18,9 @@
---
-**Documentation**: [https://fastapi.tiangolo.com](https://fastapi.tiangolo.com)
+**Documentation**: https://fastapi.tiangolo.com](https://fastapi.tiangolo.com)
-**Source Code**: [https://github.com/tiangolo/fastapi](https://github.com/tiangolo/fastapi)
+**Source Code**: https://github.com/tiangolo/fastapi
---
@@ -90,7 +90,7 @@ async def read_root():
```
!!! note
- If you don't know, check the section about [`async` and `await` in the docs](async.md).
+ If you don't know, check the _"In a hurry?"_ section about `async` and `await` in the docs.
* Run the server with:
@@ -290,7 +290,7 @@ Try changing the line with:

-For a more complete example including more features, [see the tutorial - user guide](tutorial/intro/).
+For a more complete example including more features, see the Tutorial - User Guide.
**Spoiler alert**: the tutorial - user guide includes:
diff --git a/docs/img/tutorial/python-types/image01.png b/docs/img/tutorial/python-types/image01.png
new file mode 100644
index 000000000..963dcf4d8
Binary files /dev/null and b/docs/img/tutorial/python-types/image01.png differ
diff --git a/docs/img/tutorial/python-types/image02.png b/docs/img/tutorial/python-types/image02.png
new file mode 100644
index 000000000..1477ea10f
Binary files /dev/null and b/docs/img/tutorial/python-types/image02.png differ
diff --git a/docs/img/tutorial/python-types/image03.png b/docs/img/tutorial/python-types/image03.png
new file mode 100644
index 000000000..d8228a3a1
Binary files /dev/null and b/docs/img/tutorial/python-types/image03.png differ
diff --git a/docs/img/tutorial/python-types/image04.png b/docs/img/tutorial/python-types/image04.png
new file mode 100644
index 000000000..2e2416ce6
Binary files /dev/null and b/docs/img/tutorial/python-types/image04.png differ
diff --git a/docs/img/tutorial/python-types/image05.png b/docs/img/tutorial/python-types/image05.png
new file mode 100644
index 000000000..d2dd08ed2
Binary files /dev/null and b/docs/img/tutorial/python-types/image05.png differ
diff --git a/docs/img/tutorial/python-types/image06.png b/docs/img/tutorial/python-types/image06.png
new file mode 100644
index 000000000..b134db118
Binary files /dev/null and b/docs/img/tutorial/python-types/image06.png differ
diff --git a/docs/index.md b/docs/index.md
index 2be4bf731..00c51f8e2 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -18,9 +18,9 @@
---
-**Documentation**: [https://fastapi.tiangolo.com](https://fastapi.tiangolo.com)
+**Documentation**: https://fastapi.tiangolo.com](https://fastapi.tiangolo.com)
-**Source Code**: [https://github.com/tiangolo/fastapi](https://github.com/tiangolo/fastapi)
+**Source Code**: https://github.com/tiangolo/fastapi
---
@@ -90,7 +90,7 @@ async def read_root():
```
!!! note
- If you don't know, check the section about [`async` and `await` in the docs](async.md).
+ If you don't know, check the _"In a hurry?"_ section about `async` and `await` in the docs.
* Run the server with:
@@ -290,7 +290,7 @@ Try changing the line with:

-For a more complete example including more features, [see the tutorial - user guide](tutorial/intro/).
+For a more complete example including more features, see the Tutorial - User Guide.
**Spoiler alert**: the tutorial - user guide includes:
diff --git a/docs/tutorial/python-types.md b/docs/tutorial/python-types.md
index 684e27f7d..8938e81e7 100644
--- a/docs/tutorial/python-types.md
+++ b/docs/tutorial/python-types.md
@@ -1 +1,288 @@
-Coming soon...
+**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
+{!./tutorial/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"
+{!./tutorial/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"
+{!./tutorial/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"
+{!./tutorial/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"
+{!./tutorial/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"
+{!./tutorial/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"
+{!./tutorial/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"
+{!./tutorial/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"
+{!./tutorial/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"
+{!./tutorial/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"
+{!./tutorial/src/python-types/tutorial009.py!}
+```
+
+Then you can declare a variable to be of type `Person`:
+
+```Python hl_lines="6"
+{!./tutorial/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
+{!./tutorial/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 next chapters.
+
+
+## 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 next chapters.
+
+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/docs/tutorial/src/python-types/tutorial003.py b/docs/tutorial/src/python-types/tutorial003.py
new file mode 100644
index 000000000..d021d8211
--- /dev/null
+++ b/docs/tutorial/src/python-types/tutorial003.py
@@ -0,0 +1,3 @@
+def get_name_with_age(name: str, age: int):
+ name_with_age = name + " is this old: " + age
+ return name_with_age
diff --git a/docs/tutorial/src/python-types/tutorial004.py b/docs/tutorial/src/python-types/tutorial004.py
new file mode 100644
index 000000000..9400269e2
--- /dev/null
+++ b/docs/tutorial/src/python-types/tutorial004.py
@@ -0,0 +1,3 @@
+def get_name_with_age(name: str, age: int):
+ name_with_age = name + " is this old: " + str(age)
+ return name_with_age
diff --git a/docs/tutorial/src/python-types/tutorial005.py b/docs/tutorial/src/python-types/tutorial005.py
new file mode 100644
index 000000000..08ab44a94
--- /dev/null
+++ b/docs/tutorial/src/python-types/tutorial005.py
@@ -0,0 +1,2 @@
+def get_items(item_a: str, item_b: int, item_c: float, item_d: bool, item_e: bytes):
+ return item_a, item_b, item_c, item_d, item_d, item_e
diff --git a/docs/tutorial/src/python-types/tutorial006.py b/docs/tutorial/src/python-types/tutorial006.py
new file mode 100644
index 000000000..87394ecb0
--- /dev/null
+++ b/docs/tutorial/src/python-types/tutorial006.py
@@ -0,0 +1,6 @@
+from typing import List
+
+
+def process_items(items: List[str]):
+ for item in items:
+ print(item)
diff --git a/docs/tutorial/src/python-types/tutorial007.py b/docs/tutorial/src/python-types/tutorial007.py
new file mode 100644
index 000000000..0b7b146e2
--- /dev/null
+++ b/docs/tutorial/src/python-types/tutorial007.py
@@ -0,0 +1,5 @@
+from typing import Tuple, Set
+
+
+def process_items(items_t: Tuple[int], items_s: Set[bytes]):
+ return items_t, items_s
diff --git a/docs/tutorial/src/python-types/tutorial008.py b/docs/tutorial/src/python-types/tutorial008.py
new file mode 100644
index 000000000..9fb1043bb
--- /dev/null
+++ b/docs/tutorial/src/python-types/tutorial008.py
@@ -0,0 +1,7 @@
+from typing import Dict
+
+
+def process_items(prices: Dict[str, float]):
+ for item_name, item_price in prices.items():
+ print(item_name)
+ print(item_price)
diff --git a/docs/tutorial/src/python-types/tutorial009.py b/docs/tutorial/src/python-types/tutorial009.py
new file mode 100644
index 000000000..7d5b09cd4
--- /dev/null
+++ b/docs/tutorial/src/python-types/tutorial009.py
@@ -0,0 +1,7 @@
+class Person:
+ def __init__(self, name: str):
+ self.name = name
+
+
+def get_person_name(one_person: Person):
+ return one_person.name
diff --git a/docs/tutorial/src/python-types/tutorial010.py b/docs/tutorial/src/python-types/tutorial010.py
new file mode 100644
index 000000000..aaaecc3ca
--- /dev/null
+++ b/docs/tutorial/src/python-types/tutorial010.py
@@ -0,0 +1,16 @@
+from datetime import datetime
+from typing import List
+from pydantic import BaseModel
+
+class User(BaseModel):
+ id: int
+ name = 'John Doe'
+ signup_ts: datetime = None
+ friends: List[int] = []
+
+external_data = {'id': '123', 'signup_ts': '2017-06-01 12:22', 'friends': [1, '2', b'3']}
+user = User(**external_data)
+print(user)
+# > User id=123 name='John Doe' signup_ts=datetime.datetime(2017, 6, 1, 12, 22) friends=[1, 2, 3]
+print(user.id)
+# > 123
diff --git a/docs/tutorial/src/sql-databases/tutorial001.py b/docs/tutorial/src/sql-databases/tutorial001.py
index a847c5c7b..3b4336a86 100644
--- a/docs/tutorial/src/sql-databases/tutorial001.py
+++ b/docs/tutorial/src/sql-databases/tutorial001.py
@@ -1,5 +1,4 @@
from fastapi import FastAPI
-
from sqlalchemy import Boolean, Column, Integer, String, create_engine
from sqlalchemy.ext.declarative import declarative_base, declared_attr
from sqlalchemy.orm import scoped_session, sessionmaker