- Sort Score
- Result 10 results
- Languages All
Results 561 - 570 of 681 for Python (0.04 sec)
-
docs/em/docs/tutorial/dependencies/sub-dependencies.md
๐ง ๐ ๐โ ๐ ๐ญ ๐ ๐ช ๐ ๐ค ๐ ๐ (๐ฒ ๐ ๐ฐ) ๐ ๐จ โฉ๏ธ โ๏ธ "๐พ" ๐ฒ, ๐ ๐ช โ ๐ข `use_cache=False` ๐โ โ๏ธ `Depends`: ```Python hl_lines="1" async def needy_dependency(fresh_value: str = Depends(get_value, use_cache=False)): return {"fresh_value": fresh_value} ``` ## ๐ โ๏ธ โช๏ธโก๏ธ ๐ ๐ ๐ค โ๏ธ ๐ฅ, **๐ ๐** โ๏ธ ๐ .
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.7K bytes - Viewed (0) -
docs/id/docs/tutorial/index.md
Sehingga kamu dapat kembali lagi dan mencari apa yang kamu butuhkan dengan tepat. ## Jalankan kode Semua blok-blok kode dapat disalin dan digunakan langsung (Mereka semua sebenarnya adalah file python yang sudah teruji). Untuk menjalankan setiap contoh, salin kode ke file `main.py`, dan jalankan `uvicorn` dengan: <div class="termy"> ```console $ uvicorn main:app --reload
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 2.9K bytes - Viewed (0) -
docs/pt/docs/how-to/configure-swagger-ui.md
```JavaScript presets: [ SwaggerUIBundle.presets.apis, SwaggerUIBundle.SwaggerUIStandalonePreset ] ``` Esses sรฃo objetos **JavaScript**, nรฃo strings, entรฃo vocรช nรฃo pode passรก-los diretamente do cรณdigo Python.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3K bytes - Viewed (0) -
docs/en/docs/management-tasks.md
* Unless it's a feature we want to discourage, like support for a corner case that we don't want users to use. * The docs should include a source example file, not write Python directly in Markdown. * If the source example(s) file can have different syntax for Python 3.8, 3.9, 3.10, there should be different versions of the file, and they should be shown in tabs in the docs. * There should be tests testing the source example.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 14.2K bytes - Viewed (0) -
docs/es/docs/benchmarks.md
Pero al revisar benchmarks y comparaciones, debes tener en cuenta lo siguiente. ## Benchmarks y velocidad
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 17:46:44 UTC 2024 - 3.7K bytes - Viewed (0) -
docs/en/docs/advanced/templates.md
In the HTML that contains: {% raw %} ```jinja Item ID: {{ id }} ``` {% endraw %} ...it will show the `id` taken from the "context" `dict` you passed: ```Python {"id": id} ``` For example, with an ID of `42`, this would render: ```html Item ID: 42 ``` ### Template `url_for` Arguments { #template-url-for-arguments }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 3.5K bytes - Viewed (0) -
docs/ko/docs/how-to/configure-swagger-ui.md
FastAPI๋ ์ด๋ฌํ JavaScript ์ ์ฉ `presets` ์ค์ ์ ํฌํจํ๊ณ ์์ต๋๋ค: ```JavaScript presets: [ SwaggerUIBundle.presets.apis, SwaggerUIBundle.SwaggerUIStandalonePreset ] ``` ์ด๋ค์ ๋ฌธ์์ด์ด ์๋ **JavaScript** ๊ฐ์ฒด์ด๋ฏ๋ก Python ์ฝ๋์์ ์ง์ ์ ๋ฌํ ์ ์์ต๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 12:25:19 UTC 2024 - 3.1K bytes - Viewed (0) -
docs/ja/docs/tutorial/body-multiple-params.md
} ``` ็นฐใ่ฟใใซใชใใพใใใใใผใฟๅใฎๅคๆใๆค่จผใๆๆธๅใชใฉใ่กใใพใใ ## ่คๆฐใฎใใใฃใใฉใกใผใฟใจใฏใจใช ใใกใใใใใใฃใใฉใกใผใฟใซๅ ใใฆใๅฟ ่ฆใซๅฟใใฆ่ฟฝๅ ใฎใฏใจใชใใฉใกใผใฟใๅฎฃ่จใใใใจใใงใใพใใ ใใใฉใซใใงใฏใๅๆฐๅคใฏใฏใจใชใใฉใกใผใฟใจใใฆ่งฃ้ใใใใฎใงใๆ็คบ็ใซ `Query` ใ่ฟฝๅ ใใๅฟ ่ฆใฏใใใพใใใ ```Python q: str = None ``` ไปฅไธใซใใใฆ: {* ../../docs_src/body_multiple_params/tutorial004.py hl[27] *} /// info | ๆ ๅ ฑ `Body`ใใพใใๅพ่ฟฐใใ `Query` ใ `Path` ใชใฉใจๅๆงใซใใในใฆใฎๆค่จผใใฉใกใผใฟใจใกใฟใใผใฟใใฉใกใผใฟใๆใฃใฆใใพใใ ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.7K bytes - Viewed (0) -
docs/ja/docs/tutorial/query-params.md
``` ...ใฏใจใชใใฉใกใผใฟใฏ: * `skip`: ๅคใฏ `0` * `limit`: ๅคใฏ `10` ใใใใฏURLใฎไธ้จใชใฎใงใใ่ช็ถใซใๆๅญๅใซใชใใพใใ ใใใPythonใฎๅใๅฎฃ่จใใใจ (ไธ่จใฎไพใงใฏ `int` ใจใใฆ)ใใใฎๅใซๅคๆใใใใชใใผใทใงใณใ่กใใใพใใ ใในใใฉใกใผใฟใซ้ฉ็จใใใๅฆ็ใจๅฎๅ จใซๅๆงใชๅฆ็ใใฏใจใชใใฉใกใผใฟใซใๆฝใใใพใ: * ใจใใฃใฟใผใตใใผใ (ๆใใใซ) * ใใผใฟใ<abbr title="HTTPใชใฏใจในใใงๅใๅใฃใๆๅญๅใPythonใใผใฟใธๅคๆใใ">่งฃๆ</abbr>ใ * ใใผใฟใใชใใผใทใงใณ * ่ชๅใใญใฅใกใณใ็ๆ ## ใใใฉใซใ ใฏใจใชใใฉใกใผใฟใฏใในใฎๅบๅฎ้จๅใงใฏใชใใฎใงใใชใใทใงใใซใจใใใใใใใฉใซใๅคใใใคใใจใใงใใพใใ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.4K bytes - Viewed (0) -
docs/ko/docs/advanced/advanced-dependencies.md
## ์ธ์คํด์ค๋ฅผ ์์กด์ฑ์ผ๋ก ์ฌ์ฉํ๊ธฐ ๊ทธ๋ฐ ๋ค์, `Depends(FixedContentQueryChecker)` ๋์ `Depends(checker)`์์ ์ด `checker` ์ธ์คํด์ค๋ฅผ ์ฌ์ฉํ ์ ์์ผ๋ฉฐ, ํด๋์ค ์์ฒด๊ฐ ์๋ ์ธ์คํด์ค `checker`๊ฐ ์์กด์ฑ์ด ๋ฉ๋๋ค. ์์กด์ฑ์ ํด๊ฒฐํ ๋ **FastAPI**๋ ์ด `checker`๋ฅผ ๋ค์๊ณผ ๊ฐ์ด ํธ์ถํฉ๋๋ค: ```Python checker(q="somequery") ``` ...๊ทธ๋ฆฌ๊ณ ์ด๋ ๋ฐํ๋๋ ๊ฐ์ *๊ฒฝ๋ก ์ฐ์ฐ ํจ์*์ `fixed_content_included` ๋งค๊ฐ๋ณ์๋ก ์ ๋ฌํฉ๋๋ค: {* ../../docs_src/dependencies/tutorial011_an_py39.py hl[22] *} /// tip | ์ฐธ๊ณ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.9K bytes - Viewed (0)