- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 395 for Pydantics (1.2 sec)
-
docs/em/docs/alternatives.md
/// check | ๐ฎ **FastAPI** ๐ฌ โ ๐ฌ ๐ฝ ๐ โ๏ธ "๐ข" ๐ฒ ๐ท ๐ข. ๐ ๐ ๐จโ๐จ ๐โ๐ฆบ, & โซ๏ธ ๐ซ ๐ช Pydantic โญ. ๐ ๐ค ๐ฎ ๐ ๏ธ ๐ Pydantic, ๐โ๐ฆบ ๐ ๐ฌ ๐ ๐ (๐ ๐ ๐ ๏ธ ๐ โช ๐ช Pydantic). /// ### <a href="https://github.com/hugapi/hug" class="external-link" target="_blank">๐ค</a> ๐ค ๐ ๐ฅ ๐ ๏ธ ๐ ๏ธ ๐ ๐ ๏ธ ๐ข ๐ โ๏ธ ๐ ๐ ๐. ๐ ๐ ๐ญ ๐ ๐ฎ ๐ ๐งฐ ๐.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 18.6K bytes - Viewed (0) -
docs/ko/docs/advanced/response-directly.md
/// ๊ทธ๋ฆฌ๊ณ `Response`๋ฅผ ๋ฐํํ๋ฉด **FastAPI**๊ฐ ์ด๋ฅผ ๊ทธ๋๋ก ์ ๋ฌํฉ๋๋ค. Pydantic ๋ชจ๋ธ๋ก ๋ฐ์ดํฐ ๋ณํ์ ์ํํ์ง ์์ผ๋ฉฐ, ๋ด์ฉ์ ๋ค๋ฅธ ํ์์ผ๋ก ๋ณํํ์ง ์์ต๋๋ค. ์ด๋ก ์ธํด ๋ง์ ์ ์ฐ์ฑ์ ์ป์ ์ ์์ต๋๋ค. ์ด๋ค ๋ฐ์ดํฐ ์ ํ์ด๋ ๋ฐํํ ์ ์๊ณ , ๋ฐ์ดํฐ ์ ์ธ์ด๋ ์ ํจ์ฑ ๊ฒ์ฌ๋ฅผ ์ฌ์ ์ํ ์ ์์ต๋๋ค. ## `Response`์์ `jsonable_encoder` ์ฌ์ฉํ๊ธฐ **FastAPI**๋ ๋ฐํํ๋ `Response`์ ์๋ฌด๋ฐ ๋ณํ์ ํ์ง ์์ผ๋ฏ๋ก, ๊ทธ ๋ด์ฉ์ด ์ค๋น๋์ด ์์ด์ผ ํฉ๋๋ค. ์๋ฅผ ๋ค์ด, Pydantic ๋ชจ๋ธ์ `dict`๋ก ๋ณํํด `JSONResponse`์ ๋ฃ์ง ์์ผ๋ฉด JSON ํธํ ์ ํ์ผ๋ก ๋ณํ๋ ๋ฐ์ดํฐ ์ ํ(์: `datetime`, `UUID` ๋ฑ)์ด ์ฌ์ฉ๋์ง ์์ต๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.4K bytes - Viewed (0) -
docs/pt/docs/tutorial/path-params.md
Da mesma forma, existem muitas ferramentas compatรญveis. Incluindo ferramentas de geraรงรฃo de cรณdigo para muitas linguagens. ## Pydantic Toda a validaรงรฃo de dados รฉ feita por baixo dos panos pelo <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a>, entรฃo vocรช tem todos os benefรญcios disso. E assim vocรช sabe que estรก em boas mรฃos.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.6K bytes - Viewed (0) -
docs/en/docs/advanced/additional-responses.md
Each of those response `dict`s can have a key `model`, containing a Pydantic model, just like `response_model`. **FastAPI** will take that model, generate its JSON Schema and include it in the correct place in OpenAPI. For example, to declare another response with a status code `404` and a Pydantic model `Message`, you can write: {* ../../docs_src/additional_responses/tutorial001.py hl[18,22] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 8.9K bytes - Viewed (0) -
docs/de/docs/alternatives.md
Das hat tatsรคchlich dazu gefรผhrt, dass Teile von Pydantic aktualisiert wurden, um denselben Validierungsdeklarationsstil zu unterstรผtzen (diese gesamte Funktionalitรคt ist jetzt bereits in Pydantic verfรผgbar). /// ### <a href="https://github.com/hugapi/hug" class="external-link" target="_blank">Hug</a>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 26.7K bytes - Viewed (0) -
docs/es/docs/tutorial/query-params-str-validations.md
### Pydantic v1 `regex` en lugar de `pattern` Antes de la versiรณn 2 de Pydantic y antes de FastAPI 0.100.0, el parรกmetro se llamaba `regex` en lugar de `pattern`, pero ahora estรก en desuso. Todavรญa podrรญas ver algo de cรณdigo que lo usa: //// tab | Pydantic v1 {* ../../docs_src/query_params_str_validations/tutorial004_regex_an_py310.py hl[11] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Feb 15 16:23:59 UTC 2025 - 16.5K bytes - Viewed (0) -
docs/en/data/topic_repos.yml
stars: 9964 owner_login: tadata-org owner_html_url: https://github.com/tadata-org - name: FastUI html_url: https://github.com/pydantic/FastUI stars: 8861 owner_login: pydantic owner_html_url: https://github.com/pydantic - name: XHS-Downloader html_url: https://github.com/JoeanAmier/XHS-Downloader stars: 8576 owner_login: JoeanAmier owner_html_url: https://github.com/JoeanAmier
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 08:57:41 UTC 2025 - 15.8K bytes - Viewed (0) -
docs/em/docs/how-to/conditional-openapi.md
* โ ๐ญ ๐ โ๏ธ ๐ ๐ฌ Pydantic ๐ท ๐ ๐จ ๐ช & ๐จ. * ๐ ๐ โ โ & ๐ โ๏ธ ๐. * ๐ ๐ช ๐ข ๐, ๐ด ๐#๏ธโฃ. * ๐ ๏ธ & โ๏ธ ๐-๐ญ ๐ ๐งฐ, ๐ ๐ธ๐ฒ & ๐ฅ ๐ค, โ๏ธ. * ๐ฎ ๐ ๐งฝ โ ๐ โฎ๏ธ Oauth2๏ธโฃ โ ๐โ ๐ช. * ...โ๏ธ. ๐, ๐ 5๏ธโฃ๐ โ๏ธ ๐ถ ๐ฏ โ๏ธ ๐ผ ๐โ ๐ ๐ค ๐ช โ ๐ ๏ธ ๐ฉบ ๐ (โ ๐ญ) โ๏ธ โ๏ธ ๐ ๐ณ โช๏ธโก๏ธ ๐ ๐ข. ## ๐ฒ ๐ โช๏ธโก๏ธ โ & ๐จ๐ป { ๐ ๐ช ๐ช โ๏ธ ๐ Pydantic โ ๐ ๐ ๐ ๐ & ๐ฉบ โ. ๐ผ:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 1.9K bytes - Viewed (0) -
docs/em/docs/index.md
## ๐ ๐ 3๏ธโฃ.7๏ธโฃ โ FastAPI ๐ง ๐ โ ๐: * <a href="https://www.starlette.io/" class="external-link" target="_blank">๐</a> ๐ธ ๐. * <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> ๐ ๐. ## ๐ทโโ <div class="termy"> ```console $ pip install "fastapi[standard]" ---> 100% ``` </div>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 17.1K bytes - Viewed (0) -
docs/en/docs/tutorial/sql-databases.md
The `Hero` class is very similar to a Pydantic model (in fact, underneath, it actually *is a Pydantic model*). There are a few differences: * `table=True` tells SQLModel that this is a *table model*, it should represent a **table** in the SQL database, it's not just a *data model* (as would be any other regular Pydantic class).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 15.4K bytes - Viewed (0)