- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 1,620 for termy (0.01 sec)
-
docs/em/docs/advanced/settings.md
//// tab | ๐พ, ๐ธ๐ป, ๐ช ๐ <div class="termy"> ```console // You could create an env var MY_NAME with $ export MY_NAME="Wade Wilson" // Then you could use it with other programs, like $ echo "Hello $MY_NAME" Hello Wade Wilson ``` </div> //// //// tab | ๐ช ๐ <div class="termy"> ```console // Create an env var MY_NAME $ $Env:MY_NAME = "Wade Wilson"
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 11.1K bytes - Viewed (0) -
docs/em/docs/tutorial/security/oauth2-jwt.md
๐ฅ ๐ ๐ ๐คพ โฎ๏ธ ๐ฅ ๐ค & ๐ โ ๐ซ ๐ท, โ <a href="https://jwt.io/" class="external-link" target="_blank">https://jwt.io</a>. ## โ `python-jose` ๐ฅ ๐ช โ `python-jose` ๐ & โ ๐ฅ ๐ค ๐: <div class="termy"> ```console $ pip install "python-jose[cryptography]" ---> 100% ``` </div> <a href="https://github.com/mpdavis/python-jose" class="external-link" target="_blank">๐-๐ฉ๐ฌ</a> ๐ ๐ ๐ฉโ๐ป โ.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 8.6K bytes - Viewed (0) -
docs/en/docs/tutorial/index.md
All the code blocks can be copied and used directly (they are actually tested Python files). To run any of the examples, copy the code to a file `main.py`, and start `fastapi dev` with: <div class="termy"> ```console $ <font color="#4E9A06">fastapi</font> dev <u style="text-decoration-style:solid">main.py</u>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 5.1K bytes - Viewed (0) -
docs/en/docs/deployment/manually.md
# Run a Server Manually { #run-a-server-manually } ## Use the `fastapi run` Command { #use-the-fastapi-run-command } In short, use `fastapi run` to serve your FastAPI application: <div class="termy"> ```console $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u> <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span> Starting production server ๐Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 6.9K bytes - Viewed (0) -
docs/es/docs/deployment/manually.md
# Ejecutar un Servidor Manualmente ## Usa el Comando `fastapi run` En resumen, usa `fastapi run` para servir tu aplicaciรณn FastAPI: <div class="termy"> ```console $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:single">main.py</u> <font color="#3465A4">INFO </font> Usando path <font color="#3465A4">main.py</font>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 8.2K bytes - Viewed (0) -
docs/ko/docs/tutorial/index.md
๊ทธ๋ฌ๋ฏ๋ก ํ์ํ ๋์ ๋ค์ ๋์์์ ์ํ๋ ๊ฒ์ ์ ํํ ์ฐพ์ ์ ์์ต๋๋ค. ## ์ฝ๋ ์คํํ๊ธฐ ๋ชจ๋ ์ฝ๋ ๋ธ๋ก์ ๋ณต์ฌํ์ฌ ๋ฐ๋ก ์ฌ์ฉํ ์ ์์ต๋๋ค(์ค์ ๋ก ํ ์คํธ๋ ํ์ด์ฌ ํ์ผ์ ๋๋ค). ์์ ๋ฅผ ์คํํ๋ ค๋ฉด ์ฝ๋๋ฅผ `main.py` ํ์ผ์ ๋ณต์ฌํ๊ณ ๋ค์์ ์ฌ์ฉํ์ฌ `uvicorn`์ ์์ํฉ๋๋ค: <div class="termy"> ```console $ uvicorn main:app --reload <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 3K bytes - Viewed (0) -
docs/em/docs/tutorial/index.md
โซ๏ธ ๐ ๐ท ๐ฎ ๐. ๐ ๐ช ๐ ๐ & ๐ โซ๏ธโ โซ๏ธโ ๐ ๐ช. ## ๐ ๐ ๐ ๐ ๐ซ ๐ช ๐ & โ๏ธ ๐ (๐ซ ๐ค ๐ฏ ๐ ๐). ๐ ๐ ๐ผ, ๐ ๐ ๐ `main.py`, & โถ๏ธ `uvicorn` โฎ๏ธ: <div class="termy"> ```console $ uvicorn main:app --reload <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 2.2K bytes - Viewed (0) -
docs/de/docs/tutorial/security/oauth2-jwt.md
## `python-jose` installieren. Wir mรผssen <abbr title="JOSE: JavaScript Object Signing and Encryption">`python-jose`</abbr> installieren, um die JWT-Tokens in Python zu generieren und zu verifizieren: <div class="termy"> ```console $ pip install "python-jose[cryptography]" ---> 100% ``` </div>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 12.1K bytes - Viewed (0) -
docs/es/docs/tutorial/security/oauth2-jwt.md
Necesitamos instalar `PyJWT` para generar y verificar los tokens JWT en Python. Asegรบrate de crear un [entorno virtual](../../virtual-environments.md){.internal-link target=_blank}, activarlo y luego instalar `pyjwt`: <div class="termy"> ```console $ pip install pyjwt ---> 100% ``` </div> /// info | Informaciรณn
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 10.9K bytes - Viewed (0) -
docs/ja/docs/advanced/websockets.md
**FastAPI**ใง<a href="https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API" class="external-link" target="_blank">WebSocket</a>ใไฝฟ็จใงใใพใใ ## `WebSockets`ใฎใคใณในใใผใซ ใพใ `WebSockets`ใฎใคใณในใใผใซใๅฟ ่ฆใงใใ <div class="termy"> ```console $ pip install websockets ---> 100% ``` </div> ## WebSocket ใฏใฉใคใขใณใ ### ๆฌ็ช็ฐๅข ๆฌ็ช็ฐๅขใงใฏใReactใVue.jsใAngularใชใฉใฎๆๆฐใฎใใฌใผใ ใฏใผใฏใงไฝๆใใใใใญใณใใจใณใใไฝฟ็จใใฆใใใงใใใใ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.1K bytes - Viewed (0)