- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 475 for tiap (0.05 sec)
-
docs/en/docs/how-to/index.md
If something seems interesting and useful to your project, go ahead and check it, but otherwise, you might probably just skip them. /// tip If you want to **learn FastAPI** in a structured way (recommended), go and read the [Tutorial - User Guide](../tutorial/index.md){.internal-link target=_blank} chapter by chapter instead.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 592 bytes - Viewed (0) -
docs/ja/docs/advanced/custom-response.md
``` /// info | "情報" パラメータ `response_class` は、レスポンスの「メディアタイプ」を定義するために利用することもできます。 この場合、HTTPヘッダー `Content-Type` には `application/json` がセットされます。 そして、OpenAPIにはそのようにドキュメントされます。 /// /// tip | "豆知識" `ORJSONResponse` は、現在はFastAPIのみで利用可能で、Starletteでは利用できません。 /// ## HTMLレスポンス **FastAPI** からHTMLを直接返す場合は、`HTMLResponse` を使います。 * `HTMLResponse` をインポートする。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.6K bytes - Viewed (0) -
docs/em/docs/deployment/docker.md
🕐❔ 🛠️ FastAPI 🈸 ⚠ 🎯 🏗 **💾 📦 🖼**. ⚫️ 🛎 🔨 ⚙️ <a href="https://www.docker.com/" class="external-link" target="_blank">**☁**</a>. 👆 💪 ⤴️ 🛠️ 👈 📦 🖼 1️⃣ 👩❤👨 💪 🌌. ⚙️ 💾 📦 ✔️ 📚 📈 ✅ **💂♂**, **🔬**, **🦁**, & 🎏. /// tip 🏃 & ⏪ 💭 👉 💩 ❓ 🦘 [`Dockerfile` 🔛 👶](#fastapi). /// <details> <summary>📁 🎮 👶</summary> ```Dockerfile FROM python:3.9 WORKDIR /code
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 27.9K bytes - Viewed (0) -
docs/en/docs/reference/websockets.md
It is provided directly by Starlette, but you can import it from `fastapi`: ```python from fastapi import WebSocket ``` /// tip When you want to define dependencies that should be compatible with both HTTP and WebSockets, you can define a parameter that takes an `HTTPConnection` instead of a `Request` or a `WebSocket`. /// ::: fastapi.WebSocket
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 1.7K bytes - Viewed (0) -
docs/zh/docs/how-to/index.md
# 如何操作 - 诀窍 在这里,你将看到关于**多个主题**的不同诀窍或“如何操作”指南。 这些方法多数是**相互独立**的,在大多数情况下,你只需在这些内容适用于**你的项目**时才需要学习它们。 如果某些内容看起来对你的项目有用,请继续查阅,否则请直接跳过它们。 /// tip | 小技巧 如果你想以系统的方式**学习 FastAPI**(推荐),请阅读 [教程 - 用户指南](../tutorial/index.md){.internal-link target=_blank} 的每一章节。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Aug 28 13:48:13 UTC 2024 - 558 bytes - Viewed (0) -
docs/es/docs/advanced/index.md
En las secciones siguientes verás otras opciones, configuraciones, y características adicionales. /// tip | Consejo Las próximas secciones **no son necesariamente "avanzadas"**. Y es posible que para tu caso, la solución se encuentre en una de estas. /// ## Lee primero el Tutorial
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 19 18:15:21 UTC 2024 - 830 bytes - Viewed (0) -
docs/pt/docs/advanced/websockets.md
Lá você pode definir: * O "Item ID", usado na rota. * O "Token" usado como um parâmetro de consulta. /// tip | Dica Perceba que a consulta `token` será manipulada por uma dependência. /// Com isso você pode conectar o WebSocket e então enviar e receber mensagens: <img src="/img/tutorial/websockets/image05.png">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Oct 31 12:20:59 UTC 2024 - 5.7K bytes - Viewed (0) -
docs/ru/docs/deployment/versions.md
/// tip | "Подсказка" "ПАТЧ" - это последнее число. Например, в `0.2.3`, ПАТЧ-версия - это `3`. /// Итак, вы можете закрепить версию следующим образом: ```txt fastapi>=0.45.0,<0.46.0 ``` Обратно несовместимые изменения и новые функции добавляются в "МИНОРНЫЕ" версии. /// tip | "Подсказка"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 5.7K bytes - Viewed (0) -
docs/pt/docs/contributing.md
<div class="termy"> ```console $ Get-Command pip some/directory/fastapi/env/bin/pip ``` </div> //// Se ele exibir o binário `pip` em `env/bin/pip` então funcionou. 🎉 /// tip Toda vez que você instalar um novo pacote com `pip` nesse ambiente, ative o ambiente novamente.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 14.8K bytes - Viewed (0) -
docs/en/docs/advanced/behind-a-proxy.md
} } ``` /// tip Notice the auto-generated server with a `url` value of `/api/v1`, taken from the `root_path`. /// In the docs UI at <a href="http://127.0.0.1:9999/api/v1/docs" class="external-link" target="_blank">http://127.0.0.1:9999/api/v1/docs</a> it would look like: <img src="/img/tutorial/behind-a-proxy/image03.png"> /// tip
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:49:49 UTC 2024 - 11.6K bytes - Viewed (0)