From a98cca9ff22731105adf119fca121a61c83fd3b5 Mon Sep 17 00:00:00 2001 From: nfsknight <118760424+nfsknight@users.noreply.github.com> Date: Thu, 13 Feb 2025 11:41:10 -0600 Subject: [PATCH 1/3] additions to documentation --- .python-version | 1 + docs/en/docs/advanced/response-change-status-code.md | 4 +++- docs/en/docs/tutorial/body.md | 4 ++-- docs/en/docs/tutorial/handling-errors.md | 4 ++-- docs/en/docs/tutorial/schema-extra-example.md | 2 +- 5 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 .python-version diff --git a/.python-version b/.python-version new file mode 100644 index 000000000..6b0b9396e --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +fastapi diff --git a/docs/en/docs/advanced/response-change-status-code.md b/docs/en/docs/advanced/response-change-status-code.md index 6d3f9f3e8..c2107e49c 100644 --- a/docs/en/docs/advanced/response-change-status-code.md +++ b/docs/en/docs/advanced/response-change-status-code.md @@ -2,7 +2,9 @@ You probably read before that you can set a default [Response Status Code](../tutorial/response-status-code.md){.internal-link target=_blank}. -But in some cases you need to return a different status code than the default. +You also read that you signal errors (400-range status codes) by raising an `HTTPException`. + +But in some cases you need to return a status code other than the default or an error. ## Use case diff --git a/docs/en/docs/tutorial/body.md b/docs/en/docs/tutorial/body.md index aba5593a5..be5fb324f 100644 --- a/docs/en/docs/tutorial/body.md +++ b/docs/en/docs/tutorial/body.md @@ -26,9 +26,9 @@ First, you need to import `BaseModel` from `pydantic`: ## Create your data model -Then you declare your data model as a class that inherits from `BaseModel`. +Then you declare your data model as a class that inherits from `BaseModel`. These classes will be the containers for the various requests and responses you intend to implement. -Use standard Python types for all the attributes: +`BaseModel` will handle the data validation of all requests and responses for you. All you do is declare what type each attribute is supposed to have. Use standard Python types for the attributes: {* ../../docs_src/body/tutorial001_py310.py hl[5:9] *} diff --git a/docs/en/docs/tutorial/handling-errors.md b/docs/en/docs/tutorial/handling-errors.md index 4d969747f..2ccee29c6 100644 --- a/docs/en/docs/tutorial/handling-errors.md +++ b/docs/en/docs/tutorial/handling-errors.md @@ -71,11 +71,11 @@ They are handled automatically by **FastAPI** and converted to JSON. ## Add custom headers -There are some situations in where it's useful to be able to add custom headers to the HTTP error. For example, for some types of security. +There are some situations in which it's useful to be able to add custom headers to the HTTP error. For example, for some types of security. You probably won't need to use it directly in your code. -But in case you needed it for an advanced scenario, you can add custom headers: +But in case you need it for an advanced scenario, you can add custom headers: {* ../../docs_src/handling_errors/tutorial002.py hl[14] *} diff --git a/docs/en/docs/tutorial/schema-extra-example.md b/docs/en/docs/tutorial/schema-extra-example.md index 32a1f5ca2..85dbf8382 100644 --- a/docs/en/docs/tutorial/schema-extra-example.md +++ b/docs/en/docs/tutorial/schema-extra-example.md @@ -24,7 +24,7 @@ That extra info will be added as-is to the output **JSON Schema** for that model //// tab | Pydantic v2 -In Pydantic version 2, you would use the attribute `model_config`, that takes a `dict` as described in Pydantic's docs: Configuration. +In Pydantic version 2, you would use the attribute `model_config`. `model_config` formats the behavior of an entire model, as opposed to `Field` which formats the behavior of individual attributes. It takes a `dict` as described in Pydantic's docs: Configuration. You can set `"json_schema_extra"` with a `dict` containing any additional data you would like to show up in the generated JSON Schema, including `examples`. From 0add1e2e4b3484012790fb3de88fe6d48823ac15 Mon Sep 17 00:00:00 2001 From: nfsknight <118760424+nfsknight@users.noreply.github.com> Date: Wed, 19 Feb 2025 10:17:31 -0600 Subject: [PATCH 2/3] Removed .python-version file --- .python-version | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .python-version diff --git a/.python-version b/.python-version deleted file mode 100644 index 6b0b9396e..000000000 --- a/.python-version +++ /dev/null @@ -1 +0,0 @@ -fastapi From a3a8a3797f70917d5355d729df99ae03555988fa Mon Sep 17 00:00:00 2001 From: Sofie Van Landeghem Date: Thu, 20 Feb 2025 13:38:21 +0100 Subject: [PATCH 3/3] small edits --- docs/en/docs/tutorial/body.md | 2 +- docs/en/docs/tutorial/schema-extra-example.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/docs/tutorial/body.md b/docs/en/docs/tutorial/body.md index be5fb324f..21ac9b616 100644 --- a/docs/en/docs/tutorial/body.md +++ b/docs/en/docs/tutorial/body.md @@ -28,7 +28,7 @@ First, you need to import `BaseModel` from `pydantic`: Then you declare your data model as a class that inherits from `BaseModel`. These classes will be the containers for the various requests and responses you intend to implement. -`BaseModel` will handle the data validation of all requests and responses for you. All you do is declare what type each attribute is supposed to have. Use standard Python types for the attributes: +`BaseModel` will handle the data validation of all requests and responses for you. All you have to do is declare what type each attribute is supposed to have. Use standard Python types for the attributes: {* ../../docs_src/body/tutorial001_py310.py hl[5:9] *} diff --git a/docs/en/docs/tutorial/schema-extra-example.md b/docs/en/docs/tutorial/schema-extra-example.md index 85dbf8382..d869ec059 100644 --- a/docs/en/docs/tutorial/schema-extra-example.md +++ b/docs/en/docs/tutorial/schema-extra-example.md @@ -24,7 +24,7 @@ That extra info will be added as-is to the output **JSON Schema** for that model //// tab | Pydantic v2 -In Pydantic version 2, you would use the attribute `model_config`. `model_config` formats the behavior of an entire model, as opposed to `Field` which formats the behavior of individual attributes. It takes a `dict` as described in Pydantic's docs: Configuration. +In Pydantic version 2, you would use the attribute `model_config`, which formats the behavior of an entire model, as opposed to `Field` which formats the behavior of individual attributes. The `model_config` takes a `dict` as described in Pydantic's docs: Configuration. You can set `"json_schema_extra"` with a `dict` containing any additional data you would like to show up in the generated JSON Schema, including `examples`.