From 659b8ae8af59a935efdf2461fa348f5d294fb69f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 17 Dec 2018 22:50:22 +0400 Subject: [PATCH] :memo: Update docs, typos, aclarations, fix examples for NoSQL models --- docs/features.md | 11 +++---- docs/tutorial/dependencies/first-steps.md | 2 +- docs/tutorial/intro.md | 4 +-- docs/tutorial/nosql-databases.md | 33 +++++-------------- docs/tutorial/path-params.md | 2 +- docs/tutorial/query-params-str-validations.md | 2 +- .../src/nosql-databases/tutorial001.py | 8 ++--- docs/tutorial/src/python-types/tutorial007.py | 2 +- docs/tutorial/src/python-types/tutorial009.py | 2 +- docs/tutorial/src/python-types/tutorial010.py | 11 +++++-- mkdocs.yml | 2 +- 11 files changed, 34 insertions(+), 45 deletions(-) diff --git a/docs/features.md b/docs/features.md index fde01a2cd..28968e8bc 100644 --- a/docs/features.md +++ b/docs/features.md @@ -61,15 +61,14 @@ second_user_data = { "joined": "2018-11-30", } - -# **second_user_data means: -# pass the keys and values of the dict -# directly as key-value arguments -# equivalent to: -# id=4, name="Mary", joined="2018-11-30" my_second_user: User = User(**second_user_data) ``` +!!! info + `**second_user_data` means: + + 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. diff --git a/docs/tutorial/dependencies/first-steps.md b/docs/tutorial/dependencies/first-steps.md index 40f4f588b..c1364808e 100644 --- a/docs/tutorial/dependencies/first-steps.md +++ b/docs/tutorial/dependencies/first-steps.md @@ -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 `async` and `await` in the docs. ## Integrated wiht OpenAPI diff --git a/docs/tutorial/intro.md b/docs/tutorial/intro.md index a5fb9bfe1..04028e664 100644 --- a/docs/tutorial/intro.md +++ b/docs/tutorial/intro.md @@ -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. ## Run the code diff --git a/docs/tutorial/nosql-databases.md b/docs/tutorial/nosql-databases.md index 1ca136efd..96d7f73f3 100644 --- a/docs/tutorial/nosql-databases.md +++ b/docs/tutorial/nosql-databases.md @@ -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 ID 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 unit tests for it: -```Python hl_lines="36 37 38 39 40 41 42 43" +```Python hl_lines="35 36 37 38 39 40 41" {!./tutorial/src/nosql-databases/tutorial001.py!} ``` @@ -146,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!} ``` @@ -156,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-params.md b/docs/tutorial/path-params.md index 8834573a9..63898c315 100644 --- a/docs/tutorial/path-params.md +++ b/docs/tutorial/path-params.md @@ -96,7 +96,7 @@ All the data validation is performed under the hood by User id=123 name='John Doe' signup_ts=datetime.datetime(2017, 6, 1, 12, 22) friends=[1, 2, 3] diff --git a/mkdocs.yml b/mkdocs.yml index 45866680e..2b0bce0f6 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -14,7 +14,7 @@ repo_url: https://github.com/tiangolo/fastapi edit_uri: "" nav: - - Introduction: 'index.md' + - FastAPI: 'index.md' - Features: 'features.md' - Tutorial - User Guide: - Tutorial - User Guide - Intro: 'tutorial/intro.md'