- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 301 for tutorial002_py310 (0.25 sec)
-
docs/em/docs/tutorial/body-nested-models.md
``` //// //// tab | 🐍 3️⃣.9️⃣ & 🔛 ```Python hl_lines="14" {!> ../../docs_src/body_nested_models/tutorial002_py39.py!} ``` //// //// tab | 🐍 3️⃣.1️⃣0️⃣ & 🔛 ```Python hl_lines="12" {!> ../../docs_src/body_nested_models/tutorial002_py310.py!} ``` //// ## ⚒ 🆎 ✋️ ⤴️ 👥 💭 🔃 ⚫️, & 🤔 👈 🔖 🚫🔜 🚫 🔁, 👫 🔜 🎲 😍 🎻.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.1K bytes - Viewed (0) -
docs/fr/docs/tutorial/body-multiple-params.md
``` Mais vous pouvez également déclarer plusieurs paramètres provenant de body, par exemple `item` et `user` simultanément : //// tab | Python 3.10+ ```Python hl_lines="20" {!> ../../docs_src/body_multiple_params/tutorial002_py310.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="22" {!> ../../docs_src/body_multiple_params/tutorial002.py!} ``` ////
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.5K bytes - Viewed (0) -
docs/em/docs/tutorial/schema-extra-example.md
```Python hl_lines="4 10-13" {!> ../../docs_src/schema_extra_example/tutorial002.py!} ``` //// //// tab | 🐍 3️⃣.1️⃣0️⃣ & 🔛 ```Python hl_lines="2 8-11" {!> ../../docs_src/schema_extra_example/tutorial002_py310.py!} ``` //// /// warning 🚧 🤯 👈 📚 ➕ ❌ 🚶♀️ 🏆 🚫 🚮 🙆 🔬, 🕴 ➕ ℹ, 🧾 🎯. /// ## `example` & `examples` 🗄 🕐❔ ⚙️ 🙆: * `Path()` * `Query()` * `Header()`
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.5K bytes - Viewed (0) -
docs/ru/docs/tutorial/schema-extra-example.md
Вы можете использовать это, чтобы добавить аргумент `example` для каждого поля: //// tab | Python 3.10+ ```Python hl_lines="2 8-11" {!> ../../docs_src/schema_extra_example/tutorial002_py310.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="4 10-13" {!> ../../docs_src/schema_extra_example/tutorial002.py!} ``` //// /// warning | Внимание
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.5K bytes - Viewed (0) -
tests/test_tutorial/test_websockets/test_tutorial002_py310.py
from fastapi.testclient import TestClient from fastapi.websockets import WebSocketDisconnect from ...utils import needs_py310 @pytest.fixture(name="app") def get_app(): from docs_src.websockets.tutorial002_py310 import app return app @needs_py310 def test_main(app: FastAPI): client = TestClient(app) response = client.get("/") assert response.status_code == 200, response.text
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 3.9K bytes - Viewed (0) -
docs/uk/docs/tutorial/body.md
//// tab | Python 3.8 і вище ```Python hl_lines="21" {!> ../../docs_src/body/tutorial002.py!} ``` //// //// tab | Python 3.10 і вище ```Python hl_lines="19" {!> ../../docs_src/body/tutorial002_py310.py!} ``` //// ## Тіло запиту + параметри шляху Ви можете одночасно оголошувати параметри шляху та тіло запиту.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.1K bytes - Viewed (0) -
docs/zh/docs/tutorial/extra-models.md
这样,就可以仅声明模型之间的差异部分(具有明文的 `password`、具有 `hashed_password` 以及不包括密码)。 通过这种方式,可以只声明模型之间的区别(分别包含明文密码、哈希密码,以及无密码的模型)。 //// tab | Python 3.10+ ```Python hl_lines="7 13-14 17-18 21-22" {!> ../../docs_src/extra_models/tutorial002_py310.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="9 15-16 19-20 23-24" {!> ../../docs_src/extra_models/tutorial002.py!} ``` //// ## `Union` 或者 `anyOf`
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.6K bytes - Viewed (0) -
docs/de/docs/how-to/separate-openapi-schemas.md
//// tab | Python 3.10+ ```Python hl_lines="7" {!> ../../docs_src/separate_openapi_schemas/tutorial001_py310.py[ln:1-7]!} # Code unterhalb weggelassen 👇 ``` <details> <summary>👀 Vollständige Dateivorschau</summary> ```Python {!> ../../docs_src/separate_openapi_schemas/tutorial001_py310.py!} ``` </details> //// //// tab | Python 3.9+ ```Python hl_lines="9"
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7K bytes - Viewed (0) -
docs/ko/docs/tutorial/body.md
* 자동 완성 * 타입 확인 * 리팩토링 * 검색 * 점검 /// ## 모델 사용하기 함수 안에서 모델 객체의 모든 어트리뷰트에 직접 접근 가능합니다: //// tab | Python 3.10+ ```Python hl_lines="19" {!> ../../docs_src/body/tutorial002_py310.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="21" {!> ../../docs_src/body/tutorial002.py!} ``` //// ## 요청 본문 + 경로 매개변수
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.7K bytes - Viewed (0) -
docs/ru/docs/tutorial/response-model.md
Здесь мы объявили модель `UserIn`, которая хранит пользовательский пароль в открытом виде: //// tab | Python 3.10+ ```Python hl_lines="7 9" {!> ../../docs_src/response_model/tutorial002_py310.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="9 11" {!> ../../docs_src/response_model/tutorial002.py!} ``` //// /// info | "Информация"
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 30.4K bytes - Viewed (0)