Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 435 for tutorial008b_py39 (0.06 sec)

  1. docs/en/docs/advanced/custom-response.md

    You can return a `RedirectResponse` directly:
    
    {* ../../docs_src/custom_response/tutorial006_py39.py hl[2,9] *}
    
    ---
    
    Or you can use it in the `response_class` parameter:
    
    
    {* ../../docs_src/custom_response/tutorial006b_py39.py hl[2,7,9] *}
    
    If you do that, then you can return the URL directly from your *path operation* function.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/custom-response.md

    Sie können eine `RedirectResponse` direkt zurückgeben:
    
    {* ../../docs_src/custom_response/tutorial006_py39.py hl[2,9] *}
    
    ---
    
    Oder Sie können sie im Parameter `response_class` verwenden:
    
    {* ../../docs_src/custom_response/tutorial006b_py39.py hl[2,7,9] *}
    
    Wenn Sie das tun, können Sie die URL direkt von Ihrer *Pfadoperation*-Funktion zurückgeben.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  3. docs/es/docs/advanced/custom-response.md

    Puedes devolver un `RedirectResponse` directamente:
    
    {* ../../docs_src/custom_response/tutorial006_py39.py hl[2,9] *}
    
    ---
    
    O puedes usarlo en el parámetro `response_class`:
    
    {* ../../docs_src/custom_response/tutorial006b_py39.py hl[2,7,9] *}
    
    Si haces eso, entonces puedes devolver la URL directamente desde tu *path operation function*.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  4. docs/ru/docs/advanced/custom-response.md

    Вы можете вернуть `RedirectResponse` напрямую:
    
    {* ../../docs_src/custom_response/tutorial006_py39.py hl[2,9] *}
    
    ---
    
    Или можно использовать его в параметре `response_class`:
    
    {* ../../docs_src/custom_response/tutorial006b_py39.py hl[2,7,9] *}
    
    Если вы сделаете так, то сможете возвращать URL напрямую из своей функции-обработчика пути.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/custom-response.md

    Você pode retornar uma `RedirectResponse` diretamente:
    
    {* ../../docs_src/custom_response/tutorial006_py39.py hl[2,9] *}
    
    ---
    
    Ou você pode utilizá-la no parâmetro `response_class`:
    
    {* ../../docs_src/custom_response/tutorial006b_py39.py hl[2,7,9] *}
    
    Se você fizer isso, então você pode retornar a URL diretamente da sua *função de operação de rota*
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_custom_response/test_tutorial002_tutorial003_tutorial004.py

    import importlib
    
    import pytest
    from fastapi.testclient import TestClient
    
    
    @pytest.fixture(
        name="mod_name",
        params=[
            pytest.param("tutorial002_py39"),
            pytest.param("tutorial003_py39"),
            pytest.param("tutorial004_py39"),
        ],
    )
    def get_mod_name(request: pytest.FixtureRequest) -> str:
        return request.param
    
    
    @pytest.fixture(name="client")
    def get_client(mod_name: str) -> TestClient:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/metadata.md

    Você pode defini-los da seguinte maneira:
    
    {* ../../docs_src/metadata/tutorial001_py39.py hl[3:16, 19:32] *}
    
    /// tip | Dica
    
    Você pode escrever Markdown no campo `description` e ele será renderizado na saída.
    
    ///
    
    Com essa configuração, a documentação automática da API se pareceria com:
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  8. docs/pt/docs/how-to/configure-swagger-ui.md

    <img src="/img/tutorial/extending-openapi/image02.png">
    
    Mas você pode desabilitá-lo definindo `syntaxHighlight` como `False`:
    
    {* ../../docs_src/configure_swagger_ui/tutorial001_py39.py hl[3] *}
    
    ...e então o Swagger UI não mostrará mais o destaque de sintaxe:
    
    <img src="/img/tutorial/extending-openapi/image03.png">
    
    ## Alterar o tema { #change-the-theme }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_body_nested_models/test_tutorial001_tutorial002_tutorial003.py

    
    @pytest.fixture(
        name="mod_name",
        params=[
            pytest.param("tutorial001_py39"),
            pytest.param("tutorial001_py310", marks=needs_py310),
            pytest.param("tutorial002_py39"),
            pytest.param("tutorial002_py310", marks=needs_py310),
            pytest.param("tutorial003_py39"),
            pytest.param("tutorial003_py310", marks=needs_py310),
        ],
    )
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  10. docs/pt/docs/advanced/middleware.md

    {* ../../docs_src/advanced_middleware/tutorial001_py39.py hl[2,6] *}
    
    ## `TrustedHostMiddleware` { #trustedhostmiddleware }
    
    Garante que todas as requisições recebidas tenham um cabeçalho `Host` corretamente configurado, a fim de proteger contra ataques de cabeçalho de host HTTP.
    
    {* ../../docs_src/advanced_middleware/tutorial002_py39.py hl[2,6:8] *}
    
    Os seguintes argumentos são suportados:
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 4.7K bytes
    - Viewed (0)
Back to top