- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 895 for python (0.11 sec)
-
docs/em/docs/tutorial/security/get-current-user.md
```Python hl_lines="17-20 24-25" {!> ../../docs_src/security/tutorial002_py310.py!} ``` //// ## ๐ โฎ๏ธ ๐ฉโ๐ป ๐ ๐ฅ ๐ช โ๏ธ ๐ `Depends` โฎ๏ธ ๐ `get_current_user` *โก ๐ ๏ธ*: //// tab | ๐ 3๏ธโฃ.6๏ธโฃ & ๐ ```Python hl_lines="31" {!> ../../docs_src/security/tutorial002.py!} ``` //// //// tab | ๐ 3๏ธโฃ.1๏ธโฃ0๏ธโฃ & ๐ ```Python hl_lines="29"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/ko/docs/tutorial/debugging.md
๋ฐ๋ผ์ ๋ค์ ํ ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` ์ ์คํ๋์ง ์์ต๋๋ค. /// info | "์ ๋ณด" ์์ธํ ๋ด์ฉ์ <a href="https://docs.python.org/3/library/__main__.html" class="external-link" target="_blank">๊ณต์ Python ๋ฌธ์</a>๋ฅผ ํ์ธํ์ธ์ /// ## ๋๋ฒ๊ฑฐ๋ก ์ฝ๋ ์คํ ์ฝ๋์์ ์ง์ Uvicorn ์๋ฒ๋ฅผ ์คํํ๊ณ ์๊ธฐ ๋๋ฌธ์ ๋๋ฒ๊ฑฐ์์ ์ง์ Python ํ๋ก๊ทธ๋จ(FastAPI ์ ํ๋ฆฌ์ผ์ด์ )์ ํธ์ถํ ์ ์์ต๋๋ค. ---
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.8K bytes - Viewed (0) -
ci/official/utilities/rename_and_verify_wheels.sh
exit 2 fi # Quick install checks venv=$(mktemp -d) "python${TFCI_PYTHON_VERSION}" -m venv "$venv" python="$venv/bin/python3" # TODO(b/366266944) Remove the check after tf docker image upgrade for NumPy 2 # and numpy 1 support is dropped b/361369076. if [[ "$TFCI_WHL_NUMPY_VERSION" == 1 ]]; then "$python" -m pip install numpy==1.26.0 fi "$python" -m pip install *.whl $TFCI_PYTHON_VERIFY_PIP_INSTALL_ARGS
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 21:18:17 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/de/docs/tutorial/background-tasks.md
//// tab | Python 3.10+ ```Python hl_lines="13 15 22 25" {!> ../../docs_src/background_tasks/tutorial002_an_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="13 15 22 25" {!> ../../docs_src/background_tasks/tutorial002_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="14 16 23 26"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.4K bytes - Viewed (0) -
docs/de/docs/tutorial/dependencies/index.md
//// tab | Python 3.10+ ```Python hl_lines="8-9" {!> ../../docs_src/dependencies/tutorial001_an_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="8-11" {!> ../../docs_src/dependencies/tutorial001_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="9-12" {!> ../../docs_src/dependencies/tutorial001_an.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13K bytes - Viewed (0) -
docs/ko/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
`Depends()`๋ก ๋ `list`์ด์ด์ผํฉ๋๋ค: //// tab | Python 3.9+ ```Python hl_lines="19" {!> ../../docs_src/dependencies/tutorial006_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="18" {!> ../../docs_src/dependencies/tutorial006_an.py!} ``` //// //// tab | Python 3.8 Annotated๊ฐ ์๋ ๊ฒฝ์ฐ /// tip | "ํ" ๊ฐ๋ฅํ๋ค๋ฉด `Annotated`๊ฐ ๋ฌ๋ฆฐ ๋ฒ์ ์ ๊ถ์ฅํฉ๋๋ค. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.7K bytes - Viewed (0) -
docs/de/docs/tutorial/dependencies/global-dependencies.md
In diesem Fall werden sie auf alle *Pfadoperationen* in der Anwendung angewendet: //// tab | Python 3.9+ ```Python hl_lines="16" {!> ../../docs_src/dependencies/tutorial012_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="16" {!> ../../docs_src/dependencies/tutorial012_an.py!} ``` //// //// tab | Python 3.8 nicht annotiert /// tip | "Tipp"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 1.5K bytes - Viewed (0) -
docs/pt/docs/tutorial/body-updates.md
//// tab | Python 3.10+ ```Python hl_lines="28-33" {!> ../../../docs_src/body_updates/tutorial001_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="30-35" {!> ../../../docs_src/body_updates/tutorial001_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="30-35" {!> ../../../docs_src/body_updates/tutorial001.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 14 09:16:06 UTC 2024 - 6K bytes - Viewed (0) -
docs/en/docs/tutorial/body-updates.md
//// tab | Python 3.10+ ```Python hl_lines="28-33" {!> ../../docs_src/body_updates/tutorial001_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="30-35" {!> ../../docs_src/body_updates/tutorial001_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="30-35" {!> ../../docs_src/body_updates/tutorial001.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.6K bytes - Viewed (0) -
docs/pt/docs/advanced/security/http-basic-auth.md
* Isto contรฉm o `username` e o `password` enviado. //// tab | Python 3.9+ ```Python hl_lines="4 8 12" {!> ../../docs_src/security/tutorial006_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="2 7 11" {!> ../../docs_src/security/tutorial006_an.py!} ``` //// //// tab | Python 3.8+ non-Annotated /// tip | "Dica"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.2K bytes - Viewed (0)