Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 515 for tutorial006c_py39 (0.09 sec)

  1. docs_src/query_params_str_validations/tutorial006c_py39.py

    Sebastián Ramírez <******@****.***> 1766004103 -0800
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 293 bytes
    - Viewed (0)
  2. docs_src/custom_response/tutorial006c_py39.py

    Sebastián Ramírez <******@****.***> 1766004103 -0800
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 237 bytes
    - Viewed (0)
  3. tests/test_tutorial/test_custom_response/test_tutorial006c.py

    from fastapi.testclient import TestClient
    
    from docs_src.custom_response.tutorial006c_py39 import app
    
    client = TestClient(app)
    
    
    def test_redirect_status_code():
        response = client.get("/pydantic", follow_redirects=False)
        assert response.status_code == 302
        assert response.headers["location"] == "https://docs.pydantic.dev/"
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 904 bytes
    - Viewed (0)
  4. tests/test_tutorial/test_query_params_str_validations/test_tutorial006c.py

    import importlib
    
    import pytest
    from fastapi.testclient import TestClient
    
    from ...utils import needs_py310
    
    
    @pytest.fixture(
        name="client",
        params=[
            pytest.param("tutorial006c_py39"),
            pytest.param("tutorial006c_py310", marks=needs_py310),
            pytest.param("tutorial006c_an_py39"),
            pytest.param("tutorial006c_an_py310", marks=needs_py310),
        ],
    )
    def get_client(request: pytest.FixtureRequest):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. docs/ru/docs/python-types.md

    ```
    
    ////
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="1  4"
    {!> ../../docs_src/python_types/tutorial009_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.9+ альтернативный вариант
    
    ```Python hl_lines="1  4"
    {!> ../../docs_src/python_types/tutorial009b_py39.py!}
    ```
    
    ////
    
    #### Использовать `Union` или `Optional` { #using-union-or-optional }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 24.4K bytes
    - Viewed (0)
Back to top