- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 681 for Pythona (0.04 sec)
-
docs/pt/docs/tutorial/dependencies/sub-dependencies.md
//// tab | Python 3.8+ ```Python hl_lines="1" async def needy_dependency(fresh_value: Annotated[str, Depends(get_value, use_cache=False)]): return {"fresh_value": fresh_value} ``` //// //// tab | Python 3.8+ non-Annotated /// tip | Dica Utilize a versรฃo com `Annotated` se possรญvel. /// ```Python hl_lines="1"
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4K bytes - Viewed (0) -
docs/em/docs/tutorial/body-multiple-params.md
๐, โซ๏ธ ๐ ๐ ๐ ๐, โ, ๐, โ๏ธ. ## ๐ ๐ช = & ๐ข โ๏ธ, ๐ ๐ช ๐ฃ ๐ ๐ข ๐ข ๐โ ๐ ๐ช, ๐ ๐ ๐ช ๐ข. , ๐ข, โญ ๐ฒ ๐ฌ ๐ข ๐ข, ๐ ๐ซ โ๏ธ ๐ฏ ๐ฎ `Query`, ๐ ๐ช: ```Python q: Union[str, None] = None ``` โ๏ธ ๐ 3๏ธโฃ.1๏ธโฃ0๏ธโฃ & ๐: ```Python q: str | None = None ``` ๐ผ: {* ../../docs_src/body_multiple_params/tutorial004.py hl[27] *} /// info
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.9K bytes - Viewed (0) -
docs/tr/docs/tutorial/request-forms.md
/// info | Bilgi Formlarฤฑ kullanmak iรงin รถncelikle <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a> paketini indirmeniz gerekmektedir. รrneฤin `pip install python-multipart`. /// ## `Form` Sฤฑnฤฑfฤฑnฤฑ Projenize Dahil Edin `Form` sฤฑnฤฑfฤฑnฤฑ `fastapi`'den projenize dahil edin:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.1K bytes - Viewed (0) -
docs/ja/docs/async.md
็ตๆใ่ฟใๅใซๅพ ๆฉใใๅฟ ่ฆใใใใใใใใฎๆฐใใPythonๆฉ่ฝใใตใใผใใใๆไฝใใใๅ ดๅใฏใๆฌกใฎใใใซใณใผใใฃใณใฐใงใใพใใ ```Python burgers = await get_burgers(2) ``` ใซใฎใฏ `await` ใงใใ็ตๆใ `burgers`ใซไฟๅญใใๅใซใ`get_burgers(2)`ใฎๅฆ็๐ใฎๅฎไบใๅพ ใคโธๅฟ ่ฆใใใใใจใPythonใซไผใใพใใใใใงPythonใฏใใใฎ้ใซ (ๅฅใฎใชใฏใจในใใๅไฟกใใใชใฉ) ไฝใไปใฎใใจใใงใใ๐โฏใใจใ็ฅใใพใใ `await` ใๆฉ่ฝใใใใใซใฏใ้ๅๆๅฆ็ใใตใใผใใใ้ขๆฐๅ ใซใใๅฟ ่ฆใใใใพใใใใใฏใ`async def` ใง้ขๆฐใๅฎฃ่จใใใ ใใงใใใงใ: ```Python hl_lines="1" async def get_burgers(number: int): # ใใณใใผใฌใผใไฝๆใใใใใซ้ๅๆๅฆ็ใๅฎ่ก return burgers ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 27.7K bytes - Viewed (0) -
docs/en/docs/tutorial/request-form-models.md
/// info To use forms, first install <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>. Make sure you create a [virtual environment](../virtual-environments.md){.internal-link target=_blank}, activate it, and then install it, for example: ```console $ pip install python-multipart ``` /// /// note
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.2K bytes - Viewed (0) -
docs/ko/docs/tutorial/dependencies/dependencies-with-yield.md
/// tip | ํ ๊ฐ ์์กด์ฑ๋ง๋ค `yield`๋ ํ ๋ฒ๋ง ์ฌ์ฉํด์ผ ํฉ๋๋ค. /// /// note | ๊ธฐ์ ์ธ๋ถ์ฌํญ ๋ค์๊ณผ ํจ๊ป ์ฌ์ฉํ ์ ์๋ ๋ชจ๋ ํจ์: * <a href="https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager" class="external-link" target="_blank">`@contextlib.contextmanager`</a> ๋๋ * <a href="https://docs.python.org/3/library/contextlib.html#contextlib.asynccontextmanager" class="external-link" target="_blank">`@contextlib.asynccontextmanager`</a>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Feb 09 14:54:09 UTC 2025 - 14.2K bytes - Viewed (0) -
docs/de/docs/tutorial/body.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.1K bytes - Viewed (0) -
docs/em/docs/deployment/docker.md
* โฎ๏ธ โ ๐ ๐ณ ๐ * โฎ๏ธ โ1๏ธโฃ ๐งฐ ๐ ๐ * โฎ๏ธ โ ๐โ๐ฆบ ๐ โ ๐ ๐ฆ ๐ผ & ๐ ๏ธ โซ๏ธ ## โ ๐ผ โฎ๏ธ ๐ถ ๐ฅ ๐ โ๏ธ <a href="https://python-poetry.org/" class="external-link" target="_blank">๐ถ</a> ๐ ๏ธ ๐ ๐ ๐, ๐ ๐ช โ๏ธ โ ๐-โถ๏ธ ๐: ```{ .dockerfile .annotate } # (1) FROM python:3.9 as requirements-stage # (2) WORKDIR /tmp # (3) RUN pip install poetry # (4)
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 27.9K bytes - Viewed (0) -
docs/de/docs/tutorial/request-forms.md
/// info Um Formulare zu verwenden, installieren Sie zuerst <a href="https://andrew-d.github.io/python-multipart/" class="external-link" target="_blank">`python-multipart`</a>. Z. B. `pip install python-multipart`. /// ## `Form` importieren Importieren Sie `Form` von `fastapi`: {* ../../docs_src/request_forms/tutorial001_an_py39.py hl[3] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.9K bytes - Viewed (0) -
docs/ja/docs/tutorial/header-params.md
ใปใจใใฉใฎๆจๆบใใใใผใฏใใใใคใใน่จๅทใ๏ผ`-`๏ผใจใใฆใ็ฅใใใใใใคใใณใใงๅบๅใใใฆใใพใใ ใใใใ`user-agent`ใฎใใใชๅคๆฐใฏPythonใงใฏ็กๅนใงใใ ใใฎใใใใใใฉใซใใงใฏใ`Header`ใฏใใฉใกใผใฟใฎๆๅญใใขใณใใผในใณใข๏ผ`_`๏ผใใใใคใใณ๏ผ`-`๏ผใซๅคๆใใฆใใใใใผใๆฝๅบใใฆๆๆธๅใใพใใ ใพใใHTTPใใใใฏๅคงๆๅญๅฐๆๅญใๅบๅฅใใชใใฎใงใPythonใฎๆจๆบในใฟใคใซ๏ผๅฅๅใในใใผใฏใฑใผในใ๏ผใงๅฎฃ่จใใใใจใใงใใพใใ ใใฎใใใ`User_Agent`ใชใฉใฎใใใซๆๅใฎๆๅญใๅคงๆๅญใซใใๅฟ ่ฆใฏใชใใ้ๅธธใฎPythonใณใผใใจๅใใใใซ`user_agent`ใไฝฟ็จใใใใจใใงใใพใใ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.8K bytes - Viewed (0)