- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 874 for Pythons (0.05 sec)
-
docs/de/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 - 6.4K bytes - Viewed (0) -
docs/pt/docs/tutorial/body-multiple-params.md
```Python q: Union[str, None] = None ``` Ou como em Python 3.10 e versões superiores: ```Python q: str | None = None ``` Por exemplo: //// tab | Python 3.10+ ```Python hl_lines="26" {!> ../../docs_src/body_multiple_params/tutorial004_py310.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="27"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6K bytes - Viewed (0) -
docs/zh/docs/tutorial/path-params-numeric-validations.md
## 导入 Path 首先,从 `fastapi` 导入 `Path`: //// tab | Python 3.10+ ```Python hl_lines="1 3" {!> ../../docs_src/path_params_numeric_validations/tutorial001_an_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="1 3" {!> ../../docs_src/path_params_numeric_validations/tutorial001_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="3-4"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.2K bytes - Viewed (0) -
docs/pt/docs/tutorial/dependencies/dependencies-with-yield.md
//// tab | python 3.9+ ```python hl_lines="18-19 26-27" {!> ../../docs_src/dependencies/tutorial008_an_py39.py!} ``` //// //// tab | python 3.8+ ```python hl_lines="17-18 25-26" {!> ../../docs_src/dependencies/tutorial008_an.py!} ``` //// //// tab | python 3.8+ non-annotated /// tip | "Dica" Utilize a versão com `Annotated` se possível. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 15.5K bytes - Viewed (0) -
docs/en/docs/tutorial/security/oauth2-jwt.md
//// tab | Python 3.10+ ```Python hl_lines="8 49 56-57 60-61 70-76" {!> ../../docs_src/security/tutorial004_an_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="8 49 56-57 60-61 70-76" {!> ../../docs_src/security/tutorial004_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="8 50 57-58 61-62 71-77"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 11:45:10 UTC 2024 - 12.8K bytes - Viewed (0) -
docs/pt/docs/virtual-environments.md
<div class="termy"> ```console $ python -m venv .venv ``` </div> /// details | O que esse comando significa * `python`: usa o programa chamado `python` * `-m`: chama um módulo como um script, nós diremos a ele qual módulo vem em seguida * `venv`: usa o módulo chamado `venv` que normalmente vem instalado com o Python
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 10 10:37:13 UTC 2024 - 22.6K bytes - Viewed (0) -
docs/pt/docs/tutorial/query-params.md
## Parâmetros opcionais Da mesma forma, você pode declarar parâmetros de consulta opcionais, definindo o valor padrão para `None`: //// tab | Python 3.10+ ```Python hl_lines="7" {!> ../../docs_src/query_params/tutorial002_py310.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="9" {!> ../../docs_src/query_params/tutorial002.py!} ``` ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.5K bytes - Viewed (0) -
docs/pt/docs/tutorial/debugging.md
```Python from myapp import app ``` #### Mais detalhes Digamos que seu arquivo se chama `myapp.py`. Se você executá-lo com: <div class="termy"> ```console $ python myapp.py ``` </div> então a variável interna `__name__` no seu arquivo, criada automaticamente pelo Python, terá como valor a string `"__main__"`. Então, a seção: ```Python
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.6K bytes - Viewed (0) -
docs/ru/docs/tutorial/dependencies/classes-as-dependencies.md
В предыдущем примере мы возвращали `словарь` из нашей зависимости: //// tab | Python 3.10+ ```Python hl_lines="9" {!> ../../docs_src/dependencies/tutorial001_an_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="11" {!> ../../docs_src/dependencies/tutorial001_an_py39.py!} ``` //// //// tab | Python 3.6+ ```Python hl_lines="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 - 16K bytes - Viewed (0) -
docs/zh/docs/advanced/settings.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.8K bytes - Viewed (0)