Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for tutorial003_05_py310 (0.59 sec)

  1. docs_src/response_model/tutorial003_05_py310.py

    Sebastián Ramírez <******@****.***> 1673367767 +0400
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Jan 10 16:22:47 UTC 2023
    - 373 bytes
    - Viewed (0)
  2. tests/test_tutorial/test_response_model/test_tutorial003_05.py

    import importlib
    
    import pytest
    from fastapi.testclient import TestClient
    
    from ...utils import needs_py310
    
    
    @pytest.fixture(
        name="client",
        params=[
            pytest.param("tutorial003_05_py39"),
            pytest.param("tutorial003_05_py310", marks=needs_py310),
        ],
    )
    def get_client(request: pytest.FixtureRequest):
        mod = importlib.import_module(f"docs_src.response_model.{request.param}")
    
        client = TestClient(mod.app)
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/response-model.md

    In this case, you can disable the response model generation by setting `response_model=None`:
    
    {* ../../docs_src/response_model/tutorial003_05_py310.py hl[7] *}
    
    This will make FastAPI skip the response model generation and that way you can have any return type annotations you need without it affecting your FastAPI application. 🤓
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/response-model.md

    Neste caso, você pode desabilitar a geração do modelo de resposta definindo `response_model=None`:
    
    {* ../../docs_src/response_model/tutorial003_05_py310.py hl[7] *}
    
    Isso fará com que o FastAPI pule a geração do modelo de resposta e, dessa forma, você pode ter quaisquer anotações de tipo de retorno que precisar sem afetar seu aplicativo FastAPI. 🤓
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  5. docs/uk/docs/tutorial/response-model.md

    У такому випадку ви можете вимкнути генерацію моделі відповіді, встановивши `response_model=None`:
    
    {* ../../docs_src/response_model/tutorial003_05_py310.py hl[7] *}
    
    Це змусить FastAPI пропустити генерацію моделі відповіді, і таким чином Ви зможете використовувати будь-які анотації типів повернення без впливу на вашу FastAPI аплікацію. 🤓
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Jun 24 19:14:01 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  6. docs/ru/docs/tutorial/response-model.md

    В этом случае вы можете отключить генерацию модели ответа, установив `response_model=None`:
    
    {* ../../docs_src/response_model/tutorial003_05_py310.py hl[7] *}
    
    Так FastAPI пропустит генерацию модели ответа, и вы сможете использовать любые аннотации возвращаемых типов, не влияя на ваше приложение FastAPI. 🤓
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/response-model.md

    In diesem Fall können Sie die Generierung des Responsemodells abschalten, indem Sie `response_model=None` setzen:
    
    {* ../../docs_src/response_model/tutorial003_05_py310.py hl[7] *}
    
    Das bewirkt, dass FastAPI die Generierung des Responsemodells unterlässt, und damit können Sie jede gewünschte Rückgabetyp-Annotation haben, ohne dass es Ihre FastAPI-Anwendung beeinflusst. 🤓
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  8. docs/es/docs/tutorial/response-model.md

    En este caso, puedes desactivar la generación del modelo de response configurando `response_model=None`:
    
    {* ../../docs_src/response_model/tutorial003_05_py310.py hl[7] *}
    
    Esto hará que FastAPI omita la generación del modelo de response y de esa manera puedes tener cualquier anotación de tipo de retorno que necesites sin que afecte a tu aplicación FastAPI. 🤓
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 17.7K bytes
    - Viewed (0)
  9. docs_src/response_model/tutorial003_04_py310.py

    Sebastián Ramírez <******@****.***> 1673367767 +0400
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Jan 10 16:22:47 UTC 2023
    - 352 bytes
    - Viewed (0)
  10. docs_src/schema_extra_example/tutorial003_an_py310.py

    Sebastián Ramírez <******@****.***> 1688149516 +0200
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 673 bytes
    - Viewed (0)
Back to top