Tony Ly
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
15 deletions
-
docs/en/docs/tutorial/encoder.md
|
@ -20,21 +20,7 @@ You can use `jsonable_encoder` for that. |
|
|
|
|
|
|
|
|
It receives an object, like a Pydantic model, and returns a JSON compatible version: |
|
|
It receives an object, like a Pydantic model, and returns a JSON compatible version: |
|
|
|
|
|
|
|
|
//// tab | Python 3.10+ |
|
|
{* ../../docs_src/encoder/tutorial001_py310.py hl[4,21] *} |
|
|
|
|
|
|
|
|
```Python hl_lines="4 21" |
|
|
|
|
|
{!> ../../docs_src/encoder/tutorial001_py310.py!} |
|
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
//// |
|
|
|
|
|
|
|
|
|
|
|
//// tab | Python 3.8+ |
|
|
|
|
|
|
|
|
|
|
|
```Python hl_lines="5 22" |
|
|
|
|
|
{!> ../../docs_src/encoder/tutorial001.py!} |
|
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
//// |
|
|
|
|
|
|
|
|
|
|
|
In this example, it would convert the Pydantic model to a `dict`, and the `datetime` to a `str`. |
|
|
In this example, it would convert the Pydantic model to a `dict`, and the `datetime` to a `str`. |
|
|
|
|
|
|
|
|