Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for tutorial001_01_py310 (0.23 sec)

  1. docs_src/response_model/tutorial001_01_py310.py

    Yurii Karabas <******@****.***> 1673099148 +0200
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Jan 07 13:45:48 UTC 2023
    - 469 bytes
    - Viewed (0)
  2. tests/test_tutorial/test_response_model/test_tutorial001_tutorial001_01.py

    
    @pytest.fixture(
        name="client",
        params=[
            pytest.param("tutorial001_py39"),
            pytest.param("tutorial001_py310", marks=needs_py310),
            pytest.param("tutorial001_01_py39"),
            pytest.param("tutorial001_01_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: Fri Dec 26 10:43:02 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/response-model.md

    You can use **type annotations** the same way you would for input data in function **parameters**, you can use Pydantic models, lists, dictionaries, scalar values like integers, booleans, etc.
    
    {* ../../docs_src/response_model/tutorial001_01_py310.py hl[16,21] *}
    
    FastAPI will use this return type to:
    
    * **Validate** the returned data.
    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

    {* ../../docs_src/response_model/tutorial001_01_py310.py hl[16,21] *}
    
    O FastAPI usará este tipo de retorno para:
    
    * **Validar** os dados retornados.
    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/de/docs/tutorial/response-model.md

    {* ../../docs_src/response_model/tutorial001_01_py310.py hl[16,21] *}
    
    FastAPI wird diesen Rückgabetyp verwenden, um:
    
    * Die zurückzugebenden Daten zu **validieren**.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  6. docs/uk/docs/tutorial/response-model.md

    {* ../../docs_src/response_model/tutorial001_01_py310.py hl[16,21] *}
    
    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)
  7. docs/ru/docs/tutorial/response-model.md

    Вы можете использовать **аннотации типов** так же, как и для входных данных в **параметрах** функции: Pydantic-модели, списки, словари, скалярные значения (целые числа, булевы и т.д.).
    
    {* ../../docs_src/response_model/tutorial001_01_py310.py hl[16,21] *}
    
    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)
  8. docs/es/docs/tutorial/response-model.md

    {* ../../docs_src/response_model/tutorial001_01_py310.py hl[16,21] *}
    
    FastAPI usará este tipo de retorno para:
    
    * **Validar** los datos devueltos.
    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/request_files/tutorial001_02_py310.py

    Sebastián Ramírez <******@****.***> 1652485102 -0500
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 470 bytes
    - Viewed (0)
  10. 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)
Back to top