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")`
### Editor support
All the framework was designed to be easy and intuitive to use, all the decisons where tested on multiple editors even before starting development, to ensure the best development experience.
@ -76,7 +76,7 @@ And you can declare dependencies with `async def` inside of normal `def` path op
It doesn't matter. **FastAPI** will know what to do.
!!! note
If you don't if you should use `async def` or not, check the section about [`async` and `await` in the docs](/tutorial/async.md).
If you don't know, check the _"In a hurry?"_ section about <ahref="https://fastapi.tiangolo.com/async/#in-a-hurry"target="_blank">`async` and `await` in the docs</a>.
@ -2,9 +2,9 @@ This tutorial shows you how to use **FastAPI** with all its features, step by st
Eeach section gradually builds on the previous ones, but it's structured to separate topics, so that you can go directly to any specific one to solve your specific API needs.
It is also built to work as a future reference. So you can come back and see exactly what you need.
It is also built to work as a future reference.
And each section is very short, so you can go directly to what you need and get the information fast.
So you can come back and see exactly what you need.
@ -43,11 +43,13 @@ In the code, a `Bucket` represents the main entrypoint of communication with the
This utility function will:
* Connect to a **Couchbase** cluster (that might be a single machine).
* Set defaults for timeouts.
* Authenticate in the cluster.
* Get a `Bucket` instance.
* Set defaults for timeouts.
* Return it.
```Python hl_lines="13 14 15 16 17 18"
```Python hl_lines="13 14 15 16 17 18 19 20"
{!./tutorial/src/nosql-databases/tutorial001.py!}
```
@ -59,7 +61,7 @@ As **Couchbase** "documents" are actually just "JSON objects", we can model them
First, let's create a `User` model:
```Python hl_lines="21 22 23 24 25"
```Python hl_lines="23 24 25 26 27"
{!./tutorial/src/nosql-databases/tutorial001.py!}
```
@ -71,28 +73,12 @@ Now, let's create a `UserInDB` model.
This will have the data that is actually stored in the database.
In Couchbase, each document has a document <abbrtitle="Identification">ID</abbr> or "key".
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:
But it is not part of the document itself.
It is stored as "metadata" of the document.
So, to be able to have that document ID as part of our model without it being part of the attributes (document contents), we can do a simple trick.
We can create an internal `class`, in this case named `Meta`, and declare the extra attribute(s) in that class.
This class doesn't have any special meaning and doesn't provide any special functionality other than not being directly an attribute of our main model:
```Python hl_lines="28 29 30 31 32 33"
```Python hl_lines="30 31 32"
{!./tutorial/src/nosql-databases/tutorial001.py!}
```
This `Meta` class won't be included when we generate a `dict` from our model, but we will be able to access it's data with something like:
```Python
my_user.Meta.key
```
!!! note
Notice that we have a `hashed_password` and a `type` field that will be stored in the database.
@ -107,11 +93,10 @@ Now create a function that will:
* Generate a document ID from it.
* Get the document with that ID.
* Put the contents of the document in a `UserInDB` model.
* Add the extracted document `key` to our model.
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:
@ -156,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: