- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 562 for imagem (0.03 sec)
-
docs/en/docs/img/tutorial/path-operation-configuration/image01.png
image01.png...
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Thu Mar 26 19:09:53 UTC 2020 - 40.9K bytes - Viewed (0) -
docs/en/docs/img/tutorial/path-params/image02.png
image02.png...
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Thu Mar 26 19:09:53 UTC 2020 - 65.7K bytes - Viewed (0) -
docs/en/docs/img/tutorial/request-form-models/image01.png
image01.png...
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Thu Sep 05 15:16:50 UTC 2024 - 43.4K bytes - Viewed (0) -
docs/en/docs/img/tutorial/response-model/image02.png
image02.png...
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Thu Mar 26 19:09:53 UTC 2020 - 87K bytes - Viewed (0) -
docs/en/docs/img/tutorial/separate-openapi-schemas/image02.png
image02.png...
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Aug 25 19:10:22 UTC 2023 - 90.3K bytes - Viewed (0) -
docs/ru/docs/tutorial/body-nested-models.md
/// ## Тела с чистыми списками элементов { #bodies-of-pure-lists } Если верхний уровень значения тела JSON-объекта представляет собой JSON `array` (в Python — `list`), вы можете объявить тип в параметре функции, так же как в моделях Pydantic: ```Python images: list[Image] ``` например так:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 11.5K bytes - Viewed (0) -
docs/de/docs/tutorial/body-nested-models.md
/// ## Bodys aus reinen Listen { #bodies-of-pure-lists } Wenn das äußerste Element des JSON-Bodys, das Sie erwarten, ein JSON-`array` (eine Python-`list`) ist, können Sie den Typ im Funktionsparameter deklarieren, mit der gleichen Syntax wie in Pydantic-Modellen: ```Python images: list[Image] ``` so wie in:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 7.6K bytes - Viewed (0) -
scripts/playwright/header_param_models/image01.py
page.get_by_role("button", name="GET /items/ Read Items").click() page.get_by_role("button", name="Try it out").click() # Manually add the screenshot page.screenshot(path="docs/en/docs/img/tutorial/header-param-models/image01.png") # --------------------- context.close() browser.close() process = subprocess.Popen( ["fastapi", "run", "docs_src/header_param_models/tutorial001.py"] ) try:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 1.1K bytes - Viewed (0) -
scripts/playwright/request_form_models/image01.py
page.get_by_role("button", name="POST /login/ Login").click() page.get_by_role("button", name="Try it out").click() # Manually add the screenshot page.screenshot(path="docs/en/docs/img/tutorial/request-form-models/image01.png") # --------------------- context.close() browser.close() process = subprocess.Popen( ["fastapi", "run", "docs_src/request_form_models/tutorial001.py"] ) try:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Sep 13 09:14:46 UTC 2024 - 1.1K bytes - Viewed (0) -
docs_src/body_nested_models/tutorial006_py310.py
from fastapi import FastAPI from pydantic import BaseModel, HttpUrl app = FastAPI() class Image(BaseModel): url: HttpUrl name: str class Item(BaseModel): name: str description: str | None = None price: float tax: float | None = None tags: set[str] = set() images: list[Image] | None = None @app.put("/items/{item_id}") async def update_item(item_id: int, item: Item):
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Jan 07 14:11:31 UTC 2022 - 475 bytes - Viewed (0)