- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 450 for patron (0.16 sec)
-
docs/de/docs/how-to/custom-request-and-route.md
{* ../../docs_src/custom_request_and_route/tutorial001.py hl[18:26] *} /// note | Technische Details Ein `Request` hat ein `request.scope`-Attribut, welches einfach ein Python-`dict` ist, welches die mit dem Request verbundenen Metadaten enthรคlt. Ein `Request` hat auch ein `request.receive`, welches eine Funktion ist, die den Hauptteil des Requests empfรคngt.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.1K bytes - Viewed (0) -
docs/em/docs/history-design-future.md
## ๐ง โคด๏ธ ๐ค ๐ธ ๐ฐ ๐ง ๐ฉโ๐ป "๐ ๏ธ" ๐ค ๐ โ๏ธ ๐ฉโ๐ป (๐ฉโ๐ป โ๏ธ FastAPI). ๐ค ๐ฏ ๐ ๐ญ ๐ ๐ ๐ ๐จโ๐จ: ๐, ๐ ๐, ๐ ๐งข ๐จโ๐จ. ๐ <a href="https://www.jetbrains.com/research/python-developers-survey-2018/#development-tools" class="external-link" target="_blank">๐ ๐ฉโ๐ป ๐ฌ</a>, ๐ ๐ ๐ 8๏ธโฃ0๏ธโฃ ๐ฏ ๐ฉโ๐ป. โซ๏ธ โ ๐ **FastAPI** ๐ฏ ๐ฏ โฎ๏ธ ๐จโ๐จ โ๏ธ 8๏ธโฃ0๏ธโฃ ๐ฏ ๐ ๐ฉโ๐ป. & ๐ ๐ ๐จโ๐จ ๐ ๐ท โก, ๐ ๐ฎ ๐ฐ ๐ ๐ท ๐ ๐ ๐จโ๐จ.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 3.4K bytes - Viewed (0) -
docs/es/docs/tutorial/middleware.md
{* ../../docs_src/middleware/tutorial001.py hl[10,12:13] *} /// tip | Consejo Aquรญ usamos <a href="https://docs.python.org/3/library/time.html#time.perf_counter" class="external-link" target="_blank">`time.perf_counter()`</a> en lugar de `time.time()` porque puede ser mรกs preciso para estos casos de uso. ๐ค /// ## Otros middlewares
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 3.3K bytes - Viewed (0) -
docs/en/docs/tutorial/security/oauth2-jwt.md
## Install `PyJWT` { #install-pyjwt } We need to install `PyJWT` to generate and verify the JWT tokens in Python. Make sure you create a [virtual environment](../../virtual-environments.md){.internal-link target=_blank}, activate it, and then install `pyjwt`: <div class="termy"> ```console $ pip install pyjwt
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 10.5K bytes - Viewed (0) -
docs/em/docs/tutorial/body-updates.md
{* ../../docs_src/body_updates/tutorial001.py hl[30:35] *} `PUT` โ๏ธ ๐จ ๐ฝ ๐ ๐ โ โป ๐ฝ. ### โ ๐ โ ๐ โ ๐ ๐ฅ ๐ ๐ โน ๐ฌ `bar` โ๏ธ `PUT` โฎ๏ธ ๐ช โ: ```Python { "name": "Barz", "price": 3, "description": None, } ``` โฉ๏ธ โซ๏ธ ๐ซ ๐ โช ๐ช ๐ข `"tax": 20.2`, ๐ข ๐ท ๐ โ ๐ข ๐ฒ `"tax": 10.5`. & ๐ ๐ ๐ โฎ๏ธ ๐ "๐" `tax` `10.5`. ## ๐ โน โฎ๏ธ `PATCH`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 11:27:35 UTC 2024 - 3.2K bytes - Viewed (0) -
docs/en/docs/benchmarks.md
But when checking benchmarks and comparisons you should keep the following in mind.
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/advanced/events.md
{* ../../docs_src/events/tutorial003.py hl[1,13] *} ํ์ด์ฌ์์ **์ปจํ ์คํธ ๋งค๋์ **๋ `with` ๋ฌธ์์ ์ฌ์ฉํ ์ ์๋ ๊ฒ์ ๋๋ค. ์๋ฅผ ๋ค์ด, `open()`์ ์ปจํ ์คํธ ๋งค๋์ ๋ก ์ฌ์ฉํ ์ ์์ต๋๋ค: ```Python with open("file.txt") as file: file.read() ``` ์ต๊ทผ ๋ฒ์ ์ ํ์ด์ฌ์์๋ **๋น๋๊ธฐ ์ปจํ ์คํธ ๋งค๋์ **๋ ์์ต๋๋ค. ์ด๋ฅผ `async with`์ ํจ๊ป ์ฌ์ฉํฉ๋๋ค: ```Python async with lifespan(app): await do_stuff() ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:33:53 UTC 2025 - 9.2K bytes - Viewed (0) -
docs/pt/docs/tutorial/security/oauth2-jwt.md
## Instalar `PyJWT` Nรณs precisamos instalar o `PyJWT` para criar e verificar os tokens JWT em Python. Certifique-se de criar um [ambiente virtual](../../virtual-environments.md){.internal-link target=_blank}, ativรก-lo e entรฃo instalar o `pyjwt`: <div class="termy"> ```console $ pip install pyjwt ---> 100%
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 11K bytes - Viewed (0) -
docs/es/docs/tutorial/body-updates.md
`PUT` se usa para recibir datos que deben reemplazar los datos existentes. ### Advertencia sobre el reemplazo Esto significa que si quieres actualizar el รญtem `bar` usando `PUT` con un body que contenga: ```Python { "name": "Barz", "price": 3, "description": None, } ``` debido a que no incluye el atributo ya almacenado `"tax": 20.2`, el modelo de entrada tomarรญa el valor por defecto de `"tax": 10.5`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 4.9K bytes - Viewed (0) -
docs/de/docs/tutorial/body-updates.md
### Warnung bezรผglich des Ersetzens Das bedeutet, dass, wenn Sie den Artikel `bar` aktualisieren wollen, mittels `PUT` und folgendem Body: ```Python { "name": "Barz", "price": 3, "description": None, } ``` das Eingabemodell nun den Defaultwert `"tax": 10.5` hat, weil Sie das bereits gespeicherte Attribut `"tax": 20.2` nicht mit รผbergeben haben.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.3K bytes - Viewed (0)