Browse Source

📝 Updates include for `docs/en/docs/tutorial/cookie-params.md` (#12808)

pull/12816/head
Baldeep Singh Handa 5 months ago
committed by GitHub
parent
commit
5d62d85095
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 104
      docs/en/docs/tutorial/cookie-params.md

104
docs/en/docs/tutorial/cookie-params.md

@ -6,57 +6,7 @@ You can define Cookie parameters the same way you define `Query` and `Path` para
First import `Cookie`:
//// tab | Python 3.10+
```Python hl_lines="3"
{!> ../../docs_src/cookie_params/tutorial001_an_py310.py!}
```
////
//// tab | Python 3.9+
```Python hl_lines="3"
{!> ../../docs_src/cookie_params/tutorial001_an_py39.py!}
```
////
//// tab | Python 3.8+
```Python hl_lines="3"
{!> ../../docs_src/cookie_params/tutorial001_an.py!}
```
////
//// tab | Python 3.10+ non-Annotated
/// tip
Prefer to use the `Annotated` version if possible.
///
```Python hl_lines="1"
{!> ../../docs_src/cookie_params/tutorial001_py310.py!}
```
////
//// tab | Python 3.8+ non-Annotated
/// tip
Prefer to use the `Annotated` version if possible.
///
```Python hl_lines="3"
{!> ../../docs_src/cookie_params/tutorial001.py!}
```
////
{* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[3] *}
## Declare `Cookie` parameters
@ -64,57 +14,7 @@ Then declare the cookie parameters using the same structure as with `Path` and `
You can define the default value as well as all the extra validation or annotation parameters:
//// tab | Python 3.10+
```Python hl_lines="9"
{!> ../../docs_src/cookie_params/tutorial001_an_py310.py!}
```
////
//// tab | Python 3.9+
```Python hl_lines="9"
{!> ../../docs_src/cookie_params/tutorial001_an_py39.py!}
```
////
//// tab | Python 3.8+
```Python hl_lines="10"
{!> ../../docs_src/cookie_params/tutorial001_an.py!}
```
////
//// tab | Python 3.10+ non-Annotated
/// tip
Prefer to use the `Annotated` version if possible.
///
```Python hl_lines="7"
{!> ../../docs_src/cookie_params/tutorial001_py310.py!}
```
////
//// tab | Python 3.8+ non-Annotated
/// tip
Prefer to use the `Annotated` version if possible.
///
```Python hl_lines="9"
{!> ../../docs_src/cookie_params/tutorial001.py!}
```
////
{* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[9] *}
/// note | "Technical Details"

Loading…
Cancel
Save