- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 191 for tutorial001_py39 (0.1 sec)
-
docs/ru/docs/tutorial/path-operation-configuration.md
//// tab | Python 3.10+ ```Python hl_lines="1 15" {!> ../../docs_src/path_operation_configuration/tutorial001_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="3 17" {!> ../../docs_src/path_operation_configuration/tutorial001_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="3 17"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.9K bytes - Viewed (0) -
docs/de/docs/tutorial/path-operation-configuration.md
//// tab | Python 3.10+ ```Python hl_lines="1 15" {!> ../../docs_src/path_operation_configuration/tutorial001_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="3 17" {!> ../../docs_src/path_operation_configuration/tutorial001_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="3 17"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.9K bytes - Viewed (0) -
docs/en/docs/tutorial/path-operation-configuration.md
//// tab | Python 3.10+ ```Python hl_lines="1 15" {!> ../../docs_src/path_operation_configuration/tutorial001_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="3 17" {!> ../../docs_src/path_operation_configuration/tutorial001_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="3 17"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.4K bytes - Viewed (0) -
docs/pt/docs/tutorial/path-operation-configuration.md
``` //// //// tab | Python 3.9 and above ```Python hl_lines="3 17" {!> ../../docs_src/path_operation_configuration/tutorial001_py39.py!} ``` //// //// tab | Python 3.10 and above ```Python hl_lines="1 15" {!> ../../docs_src/path_operation_configuration/tutorial001_py310.py!} ``` //// Esse código de status será usado na resposta e será adicionado ao esquema OpenAPI.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.9K bytes - Viewed (0) -
docs/em/docs/tutorial/path-operation-configuration.md
``` //// //// tab | 🐍 3️⃣.9️⃣ & 🔛 ```Python hl_lines="3 17" {!> ../../docs_src/path_operation_configuration/tutorial001_py39.py!} ``` //// //// tab | 🐍 3️⃣.1️⃣0️⃣ & 🔛 ```Python hl_lines="1 15" {!> ../../docs_src/path_operation_configuration/tutorial001_py310.py!} ``` //// 👈 👔 📟 🔜 ⚙️ 📨 & 🔜 🚮 🗄 🔗. /// note | "📡 ℹ" 👆 💪 ⚙️ `from starlette import status`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.2K bytes - Viewed (0) -
docs/pt/docs/tutorial/header-param-models.md
/// ```Python hl_lines="7-12 16" {!> ../../docs_src/header_param_models/tutorial001_py310.py!} ``` //// //// tab | Python 3.9+ non-Annotated /// tip | Dica Utilize a versão com `Annotated` se possível. /// ```Python hl_lines="9-14 18" {!> ../../docs_src/header_param_models/tutorial001_py39.py!} ``` //// //// tab | Python 3.8+ non-Annotated /// tip | Dica
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 22 20:41:28 UTC 2024 - 3.8K bytes - Viewed (0) -
docs/en/docs/tutorial/query-param-models.md
/// ```Python hl_lines="9-13 17" {!> ../../docs_src/query_param_models/tutorial001_py310.py!} ``` //// //// tab | Python 3.9+ non-Annotated /// tip Prefer to use the `Annotated` version if possible. /// ```Python hl_lines="8-12 16" {!> ../../docs_src/query_param_models/tutorial001_py39.py!} ``` //// //// tab | Python 3.8+ non-Annotated /// tip
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.8K bytes - Viewed (0) -
docs/en/docs/tutorial/header-param-models.md
/// ```Python hl_lines="7-12 16" {!> ../../docs_src/header_param_models/tutorial001_py310.py!} ``` //// //// tab | Python 3.9+ non-Annotated /// tip Prefer to use the `Annotated` version if possible. /// ```Python hl_lines="9-14 18" {!> ../../docs_src/header_param_models/tutorial001_py39.py!} ``` //// //// tab | Python 3.8+ non-Annotated /// tip
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.5K bytes - Viewed (0) -
tests/test_tutorial/test_separate_openapi_schemas/test_tutorial001_py39.py
import pytest from fastapi.testclient import TestClient from ...utils import needs_py39, needs_pydanticv2 @pytest.fixture(name="client") def get_client() -> TestClient: from docs_src.separate_openapi_schemas.tutorial001_py39 import app client = TestClient(app) return client @needs_py39 def test_create_item(client: TestClient) -> None: response = client.post("/items/", json={"name": "Foo"})
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Sep 28 04:14:40 UTC 2023 - 4.9K bytes - Viewed (0) -
docs/pt/docs/tutorial/query-param-models.md
/// ```Python hl_lines="9-13 17" {!> ../../docs_src/query_param_models/tutorial001_py310.py!} ``` //// //// tab | Python 3.9+ non-Annotated /// tip | Dica Prefira utilizar a versão `Annotated` se possível. /// ```Python hl_lines="8-12 16" {!> ../../docs_src/query_param_models/tutorial001_py39.py!} ``` //// //// tab | Python 3.8+ non-Annotated /// tip | Dica
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 15 09:53:14 UTC 2024 - 4.1K bytes - Viewed (0)