@ -4,7 +4,7 @@ The same way you can declare additional validation and metadata in path operatio
First, you have to import it:
First, you have to import it:
```Python hl_lines="3"
```Python hl_lines="2"
{!./tutorial/src/body_schema/tutorial001.py!}
{!./tutorial/src/body_schema/tutorial001.py!}
```
```
@ -16,7 +16,7 @@ First, you have to import it:
You can then use `Schema` with model attributes:
You can then use `Schema` with model attributes:
```Python hl_lines="10 11"
```Python hl_lines="9 10"
{!./tutorial/src/body_schema/tutorial001.py!}
{!./tutorial/src/body_schema/tutorial001.py!}
```
```
@ -44,7 +44,7 @@ If you know JSON Schema and want to add extra information appart from what we ha
For example, you can use that functionality to pass a <ahref="http://json-schema.org/latest/json-schema-validation.html#rfc.section.8.5"target="_blank">JSON Schema example</a> field to a body request JSON Schema:
For example, you can use that functionality to pass a <ahref="http://json-schema.org/latest/json-schema-validation.html#rfc.section.8.5"target="_blank">JSON Schema example</a> field to a body request JSON Schema:
@ -4,7 +4,7 @@ To declare a request body, you use <a href="https://pydantic-docs.helpmanual.io/
First, you need to import `BaseModel` from `pydantic`:
First, you need to import `BaseModel` from `pydantic`:
```Python hl_lines="1"
```Python hl_lines="2"
{!./tutorial/src/body/tutorial001.py!}
{!./tutorial/src/body/tutorial001.py!}
```
```
@ -14,7 +14,7 @@ Then you declare your data model as a class that inherits from `BaseModel`.
Use standard Python types for all the attributes:
Use standard Python types for all the attributes:
```Python hl_lines="6 7 8 9 10"
```Python hl_lines="5 6 7 8 9"
{!./tutorial/src/body/tutorial001.py!}
{!./tutorial/src/body/tutorial001.py!}
```
```
@ -44,7 +44,7 @@ For example, this model above declares a JSON "`object`" (or Python `dict`) like
To add it to your path operation, declare it the same way you declared path and query parameters:
To add it to your path operation, declare it the same way you declared path and query parameters:
```Python hl_lines="17"
```Python hl_lines="16"
{!./tutorial/src/body/tutorial001.py!}
{!./tutorial/src/body/tutorial001.py!}
```
```
@ -100,7 +100,7 @@ But you would get the same editor support with <a href="https://www.jetbrains.co
Inside of the function, you can access all the attributes of the model object directly:
Inside of the function, you can access all the attributes of the model object directly:
```Python hl_lines="20"
```Python hl_lines="19"
{!./tutorial/src/body/tutorial002.py!}
{!./tutorial/src/body/tutorial002.py!}
```
```
@ -110,7 +110,7 @@ You can declare path parameters and body requests at the same time.
**FastAPI** will recognize that the function parameters that match path parameters should be **taken from the path**, and that function parameters that are declared to be Pydantic models should be **taken from the request body**.
**FastAPI** will recognize that the function parameters that match path parameters should be **taken from the path**, and that function parameters that are declared to be Pydantic models should be **taken from the request body**.
```Python hl_lines="16 17"
```Python hl_lines="15 16"
{!./tutorial/src/body/tutorial003.py!}
{!./tutorial/src/body/tutorial003.py!}
```
```
@ -120,7 +120,7 @@ You can also declare **body**, **path** and **query** parameters, all at the sam
**FastAPI** will recognize each of them and take the data from the correct place.
**FastAPI** will recognize each of them and take the data from the correct place.
@ -61,7 +61,7 @@ As **Couchbase** "documents" are actually just "JSON objects", we can model them
First, let's create a `User` model:
First, let's create a `User` model:
```Python hl_lines="25 26 27 28 29"
```Python hl_lines="23 24 25 26 27"
{!./tutorial/src/nosql_databases/tutorial001.py!}
{!./tutorial/src/nosql_databases/tutorial001.py!}
```
```
@ -75,7 +75,7 @@ This will have the data that is actually stored in the database.
We don't create it as a subclass of Pydantic's `BaseModel` but as a subclass of our own `User`, because it will have all the attributes in `User` plus a couple more:
We don't create it as a subclass of Pydantic's `BaseModel` but as a subclass of our own `User`, because it will have all the attributes in `User` plus a couple more:
```Python hl_lines="32 33 34"
```Python hl_lines="30 31 32"
{!./tutorial/src/nosql_databases/tutorial001.py!}
{!./tutorial/src/nosql_databases/tutorial001.py!}
```
```
@ -96,7 +96,7 @@ Now create a function that will:
By creating a function that is only dedicated to getting your user from a `username` (or any other parameter) independent of your path operation function, you can more easily re-use it in multiple parts and also add <abbrtitle="Automated test, written in code, that checks if another piece of code is working correctly.">unit tests</abbr> for it:
By creating a function that is only dedicated to getting your user from a `username` (or any other parameter) independent of your path operation function, you can more easily re-use it in multiple parts and also add <abbrtitle="Automated test, written in code, that checks if another piece of code is working correctly.">unit tests</abbr> for it:
@ -141,7 +141,7 @@ As our code is calling Couchbase and we are not using the <a href="https://docs.
Also, Couchbase recommends not using a single `Bucket` object in multiple "<abbrtitle="A sequence of code being executed by the program, while at the same time, or at intervals, there can be others being executed too.">thread</abbr>s", so, we can get just get the bucket directly and pass it to our utility functions:
Also, Couchbase recommends not using a single `Bucket` object in multiple "<abbrtitle="A sequence of code being executed by the program, while at the same time, or at intervals, there can be others being executed too.">thread</abbr>s", so, we can get just get the bucket directly and pass it to our utility functions:
@ -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 <abbrtitle="a multi-line string as the first expression inside a function (not assigned to any variable) used for documentation">docstring</abbr> and **FastAPI** will read it from there.
As descriptions tend to be long and cover multiple lines, you can declare the path operation description in the function <abbrtitle="a multi-line string as the first expression inside a function (not assigned to any variable) used for documentation">docstring</abbr> and **FastAPI** will read it from there.