diff --git a/docs/tutorial/body-multiple-params.md b/docs/tutorial/body-multiple-params.md
index eeb882909..60005978c 100644
--- a/docs/tutorial/body-multiple-params.md
+++ b/docs/tutorial/body-multiple-params.md
@@ -6,7 +6,7 @@ First, of course, you can mix `Path`, `Query` and request body parameter declara
And you can also declare body parameters as optional, by setting the default to `None`:
-```Python hl_lines="18 19 20"
+```Python hl_lines="17 18 19"
{!./tutorial/src/body_multiple_params/tutorial001.py!}
```
@@ -29,7 +29,7 @@ In the previous example, the path operations would expect a JSON body with the a
But you can also declare multiple body parameters, e.g. `item` and `user`:
-```Python hl_lines="21"
+```Python hl_lines="20"
{!./tutorial/src/body_multiple_params/tutorial002.py!}
```
@@ -71,7 +71,7 @@ If you declare it as is, because it is a singular value, **FastAPI** will assume
But you can instruct **FastAPI** to treat it as another body key using `Body`:
-```Python hl_lines="22"
+```Python hl_lines="21"
{!./tutorial/src/body_multiple_params/tutorial003.py!}
```
@@ -108,7 +108,7 @@ q: str = None
as in:
-```Python hl_lines="27"
+```Python hl_lines="25"
{!./tutorial/src/body_multiple_params/tutorial004.py!}
```
@@ -130,7 +130,7 @@ item: Item = Body(..., embed=True)
as in:
-```Python hl_lines="16"
+```Python hl_lines="15"
{!./tutorial/src/body_multiple_params/tutorial005.py!}
```
diff --git a/docs/tutorial/body-nested-models.md b/docs/tutorial/body-nested-models.md
index 3ae38bbef..b5d969d67 100644
--- a/docs/tutorial/body-nested-models.md
+++ b/docs/tutorial/body-nested-models.md
@@ -4,7 +4,7 @@ With **FastAPI**, you can define, validate, document, and use arbitrarily deeply
You can define an attribute to be a subtype. For example, a Python `list`:
-```Python hl_lines="13"
+```Python hl_lines="12"
{!./tutorial/src/body_nested_models/tutorial001.py!}
```
@@ -41,7 +41,7 @@ Use that same standard syntax for model attributes with subtypes.
So, in our example, we can make `tags` be specifically a "list of strings":
-```Python hl_lines="15"
+```Python hl_lines="14"
{!./tutorial/src/body_nested_models/tutorial002.py!}
```
@@ -53,7 +53,7 @@ And Python has a special data type for sets of unique items, the `set`.
Then we can import `Set` and declare `tags` as a `set` of `str`:
-```Python hl_lines="1 15"
+```Python hl_lines="1 14"
{!./tutorial/src/body_nested_models/tutorial003.py!}
```
@@ -77,7 +77,7 @@ All that, arbitrarily nested.
For example, we can define an `Image` model:
-```Python hl_lines="10 11 12"
+```Python hl_lines="9 10 11"
{!./tutorial/src/body_nested_models/tutorial004.py!}
```
@@ -85,7 +85,7 @@ For example, we can define an `Image` model:
And then we can use it as the type of an attribute:
-```Python hl_lines="21"
+```Python hl_lines="20"
{!./tutorial/src/body_nested_models/tutorial004.py!}
```
@@ -120,7 +120,7 @@ To see all the options you have, checkout the docs for JSON Schema example field to a body request JSON Schema:
-```Python hl_lines="21 22 23 24 25 26"
+```Python hl_lines="20 21 22 23 24 25"
{!./tutorial/src/body_schema/tutorial002.py!}
```
diff --git a/docs/tutorial/body.md b/docs/tutorial/body.md
index 236232c1c..ee7a540ac 100644
--- a/docs/tutorial/body.md
+++ b/docs/tutorial/body.md
@@ -4,7 +4,7 @@ To declare a request body, you use unit tests for it:
-```Python hl_lines="37 38 39 40 41 42 43"
+```Python hl_lines="35 36 37 38 39 40 41"
{!./tutorial/src/nosql_databases/tutorial001.py!}
```
@@ -131,7 +131,7 @@ UserInDB(username="johndoe", hashed_password="some_hash")
### Create the `FastAPI` app
-```Python hl_lines="47"
+```Python hl_lines="45"
{!./tutorial/src/nosql_databases/tutorial001.py!}
```
@@ -141,7 +141,7 @@ As our code is calling Couchbase and we are not using the threads", so, we can get just get the bucket directly and pass it to our utility functions:
-```Python hl_lines="50 51 52 53 54"
+```Python hl_lines="48 49 50 51 52"
{!./tutorial/src/nosql_databases/tutorial001.py!}
```
diff --git a/docs/tutorial/path-operation-configuration.md b/docs/tutorial/path-operation-configuration.md
index 391d1e6bc..e70909867 100644
--- a/docs/tutorial/path-operation-configuration.md
+++ b/docs/tutorial/path-operation-configuration.md
@@ -11,7 +11,7 @@ You can pass directly the `int` code, like `404`.
But if you don't remember what each number code is for, you can use the shortcut constants from `starlette`:
-```Python hl_lines="4 19"
+```Python hl_lines="5 18"
{!./tutorial/src/path_operation_configuration/tutorial001.py!}
```
@@ -22,7 +22,7 @@ That status code will be used in the response and will be added to the OpenAPI s
You can add tags to your path operation, pass the parameter `tags` with a `list` of `str` (commonly just one `str`):
-```Python hl_lines="18 23 28"
+```Python hl_lines="17 22 27"
{!./tutorial/src/path_operation_configuration/tutorial002.py!}
```
@@ -34,7 +34,7 @@ They will be added to the OpenAPI schema and used by the automatic documentation
You can add a `summary` and `description`:
-```Python hl_lines="21 22"
+```Python hl_lines="20 21"
{!./tutorial/src/path_operation_configuration/tutorial003.py!}
```
@@ -42,7 +42,7 @@ You can add a `summary` and `description`:
As descriptions tend to be long and cover multiple lines, you can declare the path operation description in the function docstring and **FastAPI** will read it from there.
-```Python hl_lines="20 21 22 23 24 25 26 27 28"
+```Python hl_lines="19 20 21 22 23 24 25 26 27"
{!./tutorial/src/path_operation_configuration/tutorial004.py!}
```
@@ -57,7 +57,7 @@ It will be used in the interactive docs:
You can specify the response description with the parameter `response_description`:
-```Python hl_lines="22"
+```Python hl_lines="21"
{!./tutorial/src/path_operation_configuration/tutorial005.py!}
```
diff --git a/docs/tutorial/response-model.md b/docs/tutorial/response-model.md
index 33bc15d84..3ae20c3ed 100644
--- a/docs/tutorial/response-model.md
+++ b/docs/tutorial/response-model.md
@@ -6,7 +6,7 @@ You can declare the model used for the response with the parameter `response_mod
* `@app.delete()`
* etc.
-```Python hl_lines="18"
+```Python hl_lines="17"
{!./tutorial/src/response_model/tutorial001.py!}
```
@@ -28,13 +28,13 @@ But most importantly:
Here we are declaring a `UserIn` model, it will contain a plaintext password:
-```Python hl_lines="9 11"
+```Python hl_lines="8 10"
{!./tutorial/src/response_model/tutorial002.py!}
```
And we are using this model to declare our input and the same model to declare our output:
-```Python hl_lines="17 18"
+```Python hl_lines="16 17"
{!./tutorial/src/response_model/tutorial002.py!}
```
@@ -51,19 +51,19 @@ But if we use sthe same model for another path operation, we could be sending th
We can instead create an input model with the plaintext password and an output model without it:
-```Python hl_lines="9 11 16"
+```Python hl_lines="8 10 15"
{!./tutorial/src/response_model/tutorial003.py!}
```
Here, even though our path operation function is returning the same input user that contains the password:
-```Python hl_lines="24"
+```Python hl_lines="23"
{!./tutorial/src/response_model/tutorial003.py!}
```
...we declared the `response_model` to be our model `UserOut`, that doesn't include the password:
-```Python hl_lines="22"
+```Python hl_lines="21"
{!./tutorial/src/response_model/tutorial003.py!}
```
diff --git a/docs/tutorial/sql-databases.md b/docs/tutorial/sql-databases.md
index 1fbca84bd..bca7f5eb9 100644
--- a/docs/tutorial/sql-databases.md
+++ b/docs/tutorial/sql-databases.md
@@ -23,7 +23,7 @@ In this example, we'll use **PostgreSQL**.
For now, don't pay attention to the rest, only the imports:
-```Python hl_lines="2 3 4"
+```Python hl_lines="3 4 5"
{!./tutorial/src/sql_databases/tutorial001.py!}
```
@@ -31,7 +31,7 @@ For now, don't pay attention to the rest, only the imports:
Define the database that SQLAlchemy should connect to:
-```Python hl_lines="7"
+```Python hl_lines="8"
{!./tutorial/src/sql_databases/tutorial001.py!}
```
@@ -40,13 +40,13 @@ Define the database that SQLAlchemy should connect to:
## Create the SQLAlchemy `engine`
-```Python hl_lines="9"
+```Python hl_lines="10"
{!./tutorial/src/sql_databases/tutorial001.py!}
```
## Create a `scoped_session`
-```Python hl_lines="10 11 12"
+```Python hl_lines="11 12 13"
{!./tutorial/src/sql_databases/tutorial001.py!}
```