Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 513 for taip (0.07 sec)

  1. docs/en/docs/advanced/path-operation-advanced-configuration.md

    You should do it after adding all your *path operations*.
    
    ```Python hl_lines="2  12-21  24"
    {!../../docs_src/path_operation_advanced_configuration/tutorial002.py!}
    ```
    
    /// tip
    
    If you manually call `app.openapi()`, you should update the `operationId`s before that.
    
    ///
    
    /// warning
    
    If you do this, you have to make sure each one of your *path operation functions* has a unique name.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. docs/pt/docs/advanced/security/index.md

    ## Funcionalidades Adicionais
    
    Existem algumas funcionalidades adicionais para lidar com segurança além das cobertas em [Tutorial - Guia de Usuário: Segurança](../../tutorial/security/index.md){.internal-link target=_blank}.
    
    /// tip | "Dica"
    
    As próximas seções **não são necessariamente "avançadas"**.
    
    E é possível que para o seu caso de uso, a solução está em uma delas.
    
    ///
    
    ## Leia o Tutorial primeiro
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 03 13:43:56 UTC 2024
    - 713 bytes
    - Viewed (0)
  3. docs/fr/docs/deployment/versions.md

    des changements rétrocompatibles.
    
    /// tip | "Astuce"
    
    Le "PATCH" est le dernier chiffre, par exemple, dans `0.2.3`, la version PATCH est `3`.
    
    ///
    
    Donc, vous devriez être capable d'épingler une version comme suit :
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Les changements non rétrocompatibles et les nouvelles fonctionnalités sont ajoutés dans les versions "MINOR".
    
    /// tip | "Astuce"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. 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)
  5. docs/pt/docs/tutorial/security/index.md

    Não é muito popular ou usado nos dias atuais.
    
    OAuth2 não especifica como criptografar a comunicação, ele espera que você tenha sua aplicação em um servidor HTTPS.
    
    /// tip | "Dica"
    
    Na seção sobre **deployment** você irá ver como configurar HTTPS de modo gratuito, usando Traefik e Let’s Encrypt.
    
    ///
    
    ## OpenID Connect
    
    OpenID Connect é outra especificação, baseada em **OAuth2**.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. docs/em/docs/advanced/websockets.md

    ```
    
    </div>
    
    📂 👆 🖥 <a href="http://127.0.0.1:8000" class="external-link" target="_blank">http://127.0.0.1:8000</a>.
    
    📤 👆 💪 ⚒:
    
    *  "🏬 🆔", ⚙️ ➡.
    *  "🤝" ⚙️ 🔢 🔢.
    
    /// tip
    
    👀 👈 🔢 `token` 🔜 🍵 🔗.
    
    ///
    
    ⏮️ 👈 👆 💪 🔗 *️⃣ &amp; ⤴️ 📨 &amp; 📨 📧:
    
    <img src="/img/tutorial/websockets/image05.png">
    
    ## 🚚 🔀 &amp; 💗 👩‍💻
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. docs/em/docs/advanced/security/index.md

    # 🏧 💂‍♂
    
    ## 🌖 ⚒
    
    📤 ➕ ⚒ 🍵 💂‍♂ ↖️ ⚪️➡️ 🕐 📔 [🔰 - 👩‍💻 🦮: 💂‍♂](../../tutorial/security/index.md){.internal-link target=_blank}.
    
    /// tip
    
    ⏭ 📄 **🚫 🎯 "🏧"**.
    
     &amp; ⚫️ 💪 👈 👆 ⚙️ 💼, ⚗ 1️⃣ 👫.
    
    ///
    
    ## ✍ 🔰 🥇
    
    ⏭ 📄 🤔 👆 ⏪ ✍ 👑 [🔰 - 👩‍💻 🦮: 💂‍♂](../../tutorial/security/index.md){.internal-link target=_blank}.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 513 bytes
    - Viewed (0)
  8. docs/zh/docs/tutorial/schema-extra-example.md

    ```
    
    ////
    
    //// tab | Python 3.10+ non-Annotated
    
    /// tip
    
    尽可能选择使用 `Annotated` 的版本。
    
    ///
    
    ```Python hl_lines="18-23"
    {!> ../../docs_src/schema_extra_example/tutorial003_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+ non-Annotated
    
    /// tip
    
    尽可能选择使用 `Annotated` 的版本。
    
    ///
    
    ```Python hl_lines="20-25"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. docs/pt/docs/deployment/versions.md

    /// tip | "Dica"
    
    O "PATCH" é o último número, por exemplo, em `0.2.3`, a versão PATCH é `3`.
    
    ///
    
    Logo, você deveria conseguir fixar a versão, como:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Mudanças significativas e novos recursos são adicionados em versões "MINOR".
    
    /// tip | "Dica"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/path-params.md

    ```
    
    /// info | "Дополнительная информация"
    
    <a href="https://docs.python.org/3/library/enum.html" class="external-link" target="_blank">Перечисления (enum) доступны в Python</a> начиная с версии 3.4.
    
    ///
    
    /// tip | "Подсказка"
    
    Если интересно, то "AlexNet", "ResNet" и "LeNet" - это названия <abbr title="Технически, это архитектуры моделей глубокого обучения">моделей</abbr> машинного обучения.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top