- Sort Score
- Result 10 results
- Languages All
Results 551 - 560 of 877 for tutorial002 (0.17 sec)
-
docs/em/docs/how-to/extending-openapi.md
{!../../docs_src/extending_openapi/tutorial001.py!} ``` ### ๐ ๐ ๐ โคด๏ธ, โ๏ธ ๐ ๐ ๐ข ๐ ๐ ๐, ๐ `custom_openapi()` ๐ข: ```Python hl_lines="2 15-20" {!../../docs_src/extending_openapi/tutorial001.py!} ``` ### ๐ ๐ ๐ ๐ ๐ ๐ช ๐ฎ ๐ โ, โ ๐ `x-logo` `info` "๐" ๐ ๐: ```Python hl_lines="21-23" {!../../docs_src/extending_openapi/tutorial001.py!} ``` ### ๐พ ๐ ๐
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.7K bytes - Viewed (0) -
docs/de/docs/advanced/sub-applications.md
```Python hl_lines="3 6-8" {!../../docs_src/sub_applications/tutorial001.py!} ``` ### Unteranwendung Erstellen Sie dann Ihre Unteranwendung und deren *Pfadoperationen*. Diese Unteranwendung ist nur eine weitere Standard-FastAPI-Anwendung, aber diese wird โgemountetโ: ```Python hl_lines="11 14-16" {!../../docs_src/sub_applications/tutorial001.py!} ``` ### Die Unteranwendung mounten
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.3K bytes - Viewed (0) -
docs/zh/docs/advanced/sub-applications.md
{!../../docs_src/sub_applications/tutorial001.py!} ``` ### ๅญๅบ็จ ๆฅไธๆฅ๏ผๅๅปบๅญๅบ็จๅๅ ถ*่ทฏๅพๆไฝ*ใ ๅญๅบ็จๅชๆฏๅฆไธไธชๆ ๅ FastAPI ๅบ็จ๏ผไฝ่ฟไธชๅบ็จๆฏ่ขซ**ๆ่ฝฝ**็ๅบ็จ๏ผ ```Python hl_lines="11 14-16" {!../../docs_src/sub_applications/tutorial001.py!} ``` ### ๆ่ฝฝๅญๅบ็จ ๅจ้กถๅฑๅบ็จ `app` ไธญ๏ผๆ่ฝฝๅญๅบ็จ `subapi`ใ ๆฌไพ็ๅญๅบ็จๆ่ฝฝๅจ `/subapi` ่ทฏๅพไธ๏ผ ```Python hl_lines="11 19" {!../../docs_src/sub_applications/tutorial001.py!} ``` ### ๆฅ็ๆๆกฃ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.5K bytes - Viewed (0) -
tests/test_tutorial/test_custom_response/test_tutorial009.py
from pathlib import Path from fastapi.testclient import TestClient from docs_src.custom_response import tutorial009 from docs_src.custom_response.tutorial009 import app client = TestClient(app) def test_get(tmp_path: Path): file_path: Path = tmp_path / "large-video-file.mp4" tutorial009.some_file_path = str(file_path) test_content = b"Fake video bytes" file_path.write_bytes(test_content) response = client.get("/")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Jul 03 19:51:28 UTC 2021 - 487 bytes - Viewed (0) -
docs/en/docs/how-to/extending-openapi.md
First, write all your **FastAPI** application as normally: {* ../../docs_src/extending_openapi/tutorial001.py hl[1,4,7:9] *} ### Generate the OpenAPI schema Then, use the same utility function to generate the OpenAPI schema, inside a `custom_openapi()` function: {* ../../docs_src/extending_openapi/tutorial001.py hl[2,15:21] *} ### Modify the OpenAPI schema
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 22:39:38 UTC 2024 - 3.1K bytes - Viewed (0) -
docs/em/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
๐ ๐ช โ๏ธ ๐ ๐ *๐ข* ๐ โ๏ธ ๐. ### ๐ ๐ ๐ซ ๐ช ๐ฃ ๐จ ๐ (๐ ๐) โ๏ธ ๐ ๐ง-๐: ```Python hl_lines="6 11" {!../../docs_src/dependencies/tutorial006.py!} ``` ### ๐ค โ ๐ซ ๐ ๐ช `raise` โ , ๐ ๐ ๐: ```Python hl_lines="8 13" {!../../docs_src/dependencies/tutorial006.py!} ``` ### ๐จ ๐ฒ & ๐ซ ๐ช ๐จ ๐ฒ โ๏ธ ๐ซ, ๐ฒ ๐ ๐ซ โ๏ธ. , ๐ ๐ช ๐ค-โ๏ธ ๐ ๐ (๐ ๐จ ๐ฒ) ๐ โช โ๏ธ ๐ฑ ๐, & โ๏ธ ๐ฒ ๐ ๐ซ โ๏ธ, ๐ ๐ ๐ ๏ธ:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.2K bytes - Viewed (0) -
docs/em/docs/tutorial/security/simple-oauth2.md
### `OAuth2PasswordRequestForm` ๐ฅ, ๐ `OAuth2PasswordRequestForm`, & โ๏ธ โซ๏ธ ๐ โฎ๏ธ `Depends` *โก ๐ ๏ธ* `/token`: //// tab | ๐ 3๏ธโฃ.6๏ธโฃ & ๐ ```Python hl_lines="4 76" {!> ../../docs_src/security/tutorial003.py!} ``` //// //// tab | ๐ 3๏ธโฃ.1๏ธโฃ0๏ธโฃ & ๐ ```Python hl_lines="2 74" {!> ../../docs_src/security/tutorial003_py310.py!} ``` //// `OAuth2PasswordRequestForm` ๐ ๐ ๐ ๐ฃ ๐จ ๐ช โฎ๏ธ:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.8K bytes - Viewed (0) -
docs/zh/docs/advanced/security/oauth2-scopes.md
```Python hl_lines="2 4 8 12 46 64 105 107-115 121-124 128-134 139 153" {!../../docs_src/security/tutorial005.py!} ``` ไธ้ข๏ผๆไปฌ้ๆญฅ่ฏดๆไฟฎๆน็ไปฃ็ ๅ ๅฎนใ ## OAuth2 ๅฎๅ จๆนๆก ็ฌฌไธไธชไฟฎๆน็ๅฐๆนๆฏ๏ผไฝฟ็จไธคไธชไฝ็จๅ `me` ๅ `items ` ๅฃฐๆ OAuth2 ๅฎๅ จๆนๆกใ `scopes` ๅๆฐๆฅๆถ**ๅญๅ ธ**๏ผ้ฎๆฏไฝ็จๅใๅผๆฏไฝ็จๅ็ๆ่ฟฐ๏ผ ```Python hl_lines="62-65" {!../../docs_src/security/tutorial005.py!} ``` ๅ ไธบๅฃฐๆไบไฝ็จๅ๏ผๆไปฅ็ปๅฝๆๆๆๆถไผๅจ API ๆๆกฃไธญๆพ็คบใ ๆญคๅค๏ผ้ๆฉ็ปไบ่ฎฟ้ฎๆ้็ไฝ็จๅ๏ผ `me` ๅ `items`ใ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.8K bytes - Viewed (0) -
docs/ru/docs/tutorial/cookie-params.md
//// tab | Python 3.10+ ```Python hl_lines="1" {!> ../../docs_src/cookie_params/tutorial001_py310.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="3" {!> ../../docs_src/cookie_params/tutorial001.py!} ``` //// ## ะะฑััะฒะปะตะฝะธะต ะฟะฐัะฐะผะตััะพะฒ `Cookie` ะะฐัะตะผ ะพะฑััะฒะปัะนัะต ะฟะฐัะฐะผะตััั cookie, ะธัะฟะพะปัะทัั ัั ะถะต ััััะบัััั, ััะพ ะธ ั `Path` ะธ `Query`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 1.9K bytes - Viewed (0) -
docs/de/docs/how-to/extending-openapi.md
```Python hl_lines="1 4 7-9" {!../../docs_src/extending_openapi/tutorial001.py!} ``` ### Das OpenAPI-Schema generieren Verwenden Sie dann dieselbe Hilfsfunktion, um das OpenAPI-Schema innerhalb einer `custom_openapi()`-Funktion zu generieren: ```Python hl_lines="2 15-21" {!../../docs_src/extending_openapi/tutorial001.py!} ``` ### Das OpenAPI-Schema รคndern
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.7K bytes - Viewed (0)