Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 513 for taip (0.02 sec)

  1. docs/pt/docs/how-to/index.md

    Se algo parecer interessante e útil para o seu projeto, vá em frente e dê uma olhada. Caso contrário, você pode simplesmente ignorá-lo.
    
    /// tip
    
    Se você deseja **aprender FastAPI** de forma estruturada (recomendado), leia capítulo por capítulo [Tutorial - Guia de Usuário](../tutorial/index.md){.internal-link target=_blank} em vez disso.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 668 bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/background-tasks.md

    ```
    
    ////
    
    //// tab | Python 3.10+ nicht annotiert
    
    /// tip | "Tipp"
    
    Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
    ///
    
    ```Python hl_lines="11  13  20  23"
    {!> ../../docs_src/background_tasks/tutorial002_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+ nicht annotiert
    
    /// tip | "Tipp"
    
    Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. 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)
  4. docs/de/docs/tutorial/security/index.md

    Heutzutage ist es nicht sehr populär und wird kaum verwendet.
    
    OAuth2 spezifiziert nicht, wie die Kommunikation verschlüsselt werden soll, sondern erwartet, dass Ihre Anwendung mit HTTPS bereitgestellt wird.
    
    /// tip | "Tipp"
    
    Im Abschnitt über **Deployment** erfahren Sie, wie Sie HTTPS mithilfe von Traefik und Let's Encrypt kostenlos einrichten.
    
    ///
    
    ## OpenID Connect
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/security/index.md

    It is not very popular or used nowadays.
    
    OAuth2 doesn't specify how to encrypt the communication, it expects you to have your application served with HTTPS.
    
    /// tip
    
    In the section about **deployment** you will see how to set up HTTPS for free, using Traefik and Let's Encrypt.
    
    ///
    
    ## OpenID Connect
    
    OpenID Connect is another specification, based on **OAuth2**.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/custom-response.md

    In this case, the HTTP header `Content-Type` will be set to `application/json`.
    
    And it will be documented as such in OpenAPI.
    
    ///
    
    /// tip
    
    The `ORJSONResponse` is only available in FastAPI, not in Starlette.
    
    ///
    
    ## HTML Response
    
    To return a response with HTML directly from **FastAPI**, use `HTMLResponse`.
    
    * Import `HTMLResponse`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. 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)
  8. docs/em/docs/deployment/docker.md

    🕐❔ 🛠️ FastAPI 🈸 ⚠ 🎯 🏗 **💾 📦 🖼**. ⚫️ 🛎 🔨 ⚙️ <a href="https://www.docker.com/" class="external-link" target="_blank">**☁**</a>. 👆 💪 ⤴️ 🛠️ 👈 📦 🖼 1️⃣ 👩‍❤‍👨 💪 🌌.
    
    ⚙️ 💾 📦 ✔️ 📚 📈 ✅ **💂‍♂**, **🔬**, **🦁**, &amp; 🎏.
    
    /// tip
    
    🏃 &amp; ⏪ 💭 👉 💩 ❓ 🦘 [`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)
  9. docs/pt/docs/how-to/custom-request-and-route.md

    E uma subclasse de `APIRoute` para usar essa classe de requisição personalizada.
    
    ### Criar uma classe `GzipRequest` personalizada
    
    /// tip | Dica
    
    Isso é um exemplo de brincadeira para demonstrar como funciona, se você precisar de suporte para Gzip, você pode usar o [`GzipMiddleware`](../advanced/middleware.md#gzipmiddleware){.internal-link target=_blank} fornecido.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 22 17:33:00 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. docs/tr/docs/advanced/index.md

    [Tutorial - User Guide](../tutorial/index.md){.internal-link target=_blank} sayfası **FastAPI**'ın tüm ana özelliklerini tanıtmaya yetecektir.
    
    İlerleyen bölümlerde diğer seçenekler, konfigürasyonlar ve ek özellikleri göreceğiz.
    
    /// tip | "İpucu"
    
    Sonraki bölümler **mutlaka "gelişmiş" olmak zorunda değildir**.
    
    Kullanım şeklinize bağlı olarak, çözümünüz bu bölümlerden birinde olabilir.
    
    ///
    
    ## Önce Öğreticiyi Okuyun
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top