- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 767 for Img (0.09 seconds)
-
docs/en/docs/python-types.md
At the same point, you try to trigger the autocomplete with `Ctrl+Space` and you see: <img src="/img/python-types/image02.png"> With that, you can scroll, seeing the options, until you find the one that "rings a bell": <img src="/img/python-types/image03.png"> ## More motivation { #more-motivation } Check this function, it already has type hints:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 11K bytes - Click Count (0) -
docs/ja/docs/index.md
<img src="https://coverage-badge.samuelcolvin.workers.dev/fastapi/fastapi.svg" alt="Coverage"> </a> <a href="https://pypi.org/project/fastapi"> <img src="https://img.shields.io/pypi/v/fastapi?color=%2334D058&label=pypi%20package" alt="Package version"> </a> <a href="https://pypi.org/project/fastapi">
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 25.6K bytes - Click Count (0) -
docs/ko/docs/tutorial/debugging.md
그런 다음 **FastAPI** 코드로 서버를 시작하고 중단점 등에서 중지합니다. 다음과 같이 표시됩니다. <img src="/img/tutorial/debugging/image01.png"> --- Pycharm을 사용하는 경우 다음을 수행할 수 있습니다 * "Run" 메뉴를 엽니다. * "Debug..." 옵션을 선택합니다. * 그러면 상황에 맞는 메뉴가 나타납니다. * 디버그할 파일을 선택합니다(이 경우 `main.py`). 그런 다음 **FastAPI** 코드로 서버를 시작하고 중단점 등에서 중지합니다. 다음과 같이 표시됩니다.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 2.8K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/debugging.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/zh-hant/docs/python-types.md
不過現在,想像你又在撰寫那個函式,但這次有型別提示。 在同樣的地方,你按 `Ctrl+Space` 嘗試自動完成,然後你會看到: <img src="/img/python-types/image02.png"> 有了這些,你可以往下捲動查看選項,直到找到一個「看起來眼熟」的: <img src="/img/python-types/image03.png"> ## 更多動機 { #more-motivation } 看這個函式,它已經有型別提示了: {* ../../docs_src/python_types/tutorial003_py310.py hl[1] *} 因為編輯器知道變數的型別,你不只會得到自動完成,還會得到錯誤檢查: <img src="/img/python-types/image04.png"> 現在你知道要修正它,把 `age` 用 `str(age)` 轉成字串:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 10.7K bytes - Click Count (0) -
tests/test_swagger_ui_escape.py
html = get_swagger_ui_html( openapi_url="/openapi.json", title="Test", swagger_ui_parameters={"customKey": "<img src=x onerror=alert(1)>"}, ) body = html.body.decode() assert "<img src=x onerror=alert(1)>" not in body assert "\\u003cimg" in body def test_normal_init_oauth_still_works(): html = get_swagger_ui_html(
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 24 09:28:10 GMT 2026 - 1.1K bytes - Click Count (0) -
docs/ko/docs/advanced/sub-applications.md
메인 앱의 자동 API 문서를 보게 될 것이며, 메인 앱 자체의 _경로 처리_만 포함됩니다: <img src="/img/tutorial/sub-applications/image01.png"> 그 다음, [http://127.0.0.1:8000/subapi/docs](http://127.0.0.1:8000/subapi/docs)에서 하위 애플리케이션의 문서를 여세요. 하위 애플리케이션의 자동 API 문서를 보게 될 것이며, 하위 경로 접두사 `/subapi` 아래에 올바르게 포함된 하위 애플리케이션 자체의 _경로 처리_만 포함됩니다: <img src="/img/tutorial/sub-applications/image02.png">
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 3.4K bytes - Click Count (0) -
docs/en/docs/tutorial/security/oauth2-jwt.md
You'll see the user interface like: <img src="/img/tutorial/security/image07.png"> Authorize the application the same way as before. Using the credentials: Username: `johndoe` Password: `secret` /// check Notice that nowhere in the code is the plaintext password "`secret`", we only have the hashed version. /// <img src="/img/tutorial/security/image08.png">
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 10.7K bytes - Click Count (0) -
docs/ja/docs/deployment/https.md
DNSサーバーは、ブラウザに特定の**IPアドレス**を使用するように指示します。このIPアドレスは、DNSサーバーで設定した、あなたのサーバーが使用するパブリックIPアドレスになります。 <img src="/img/deployment/https/https01.drawio.svg"> ### TLS Handshake の開始 { #tls-handshake-start } ブラウザはIPアドレスと**ポート443**(HTTPSポート)で通信します。 通信の最初の部分は、クライアントとサーバー間の接続を確立し、使用する暗号鍵などを決めるだけです。 <img src="/img/deployment/https/https02.drawio.svg"> TLS接続を確立するためのクライアントとサーバー間のこのやりとりは、**TLSハンドシェイク**と呼ばれます。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 18.1K bytes - Click Count (0) -
docs/zh-hant/docs/async.md
### 並行漢堡 { #concurrent-burgers } 你和你的戀人去速食店,排隊等候時,收銀員正在幫排在你前面的人點餐。😍 <img src="/img/async/concurrent-burgers/concurrent-burgers-01.png" class="illustration"> 輪到你了,你給你與你的戀人點了兩個豪華漢堡。🍔🍔 <img src="/img/async/concurrent-burgers/concurrent-burgers-02.png" class="illustration"> 收銀員通知廚房準備你的漢堡(儘管他們還在為前面其他顧客準備食物)。 <img src="/img/async/concurrent-burgers/concurrent-burgers-03.png" class="illustration"> 之後你完成付款。💸Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 21.7K bytes - Click Count (0)