Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 427 for tutorials (0.19 sec)

  1. docs/pt/docs/tutorial/body.md

    Os esquemas JSON dos seus modelos farão parte do esquema OpenAPI gerado para sua aplicação, e aparecerão na documentação interativa da API:
    
    <img src="/img/tutorial/body/image01.png">
    
    E também serão utilizados em cada *função de operação de rota* que utilizá-los:
    
    <img src="/img/tutorial/body/image02.png">
    
    ## Suporte do editor de texto:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  2. docs/de/docs/how-to/configure-swagger-ui.md

    <img src="/img/tutorial/extending-openapi/image02.png">
    
    Sie können sie jedoch deaktivieren, indem Sie `syntaxHighlight` auf `False` setzen:
    
    ```Python hl_lines="3"
    {!../../../docs_src/configure_swagger_ui/tutorial001.py!}
    ```
    
    ... und dann zeigt die Swagger-Oberfläche die Syntaxhervorhebung nicht mehr an:
    
    <img src="/img/tutorial/extending-openapi/image03.png">
    
    ## Das Theme ändern
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 18:17:49 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  3. docs/en/docs/how-to/sql-databases-peewee.md

    # ~~SQL (Relational) Databases with Peewee~~ (deprecated)
    
    !!! warning "Deprecated"
        This tutorial is deprecated and will be removed in a future version.
    
    !!! warning
        If you are just starting, the tutorial [SQL (Relational) Databases](../tutorial/sql-databases.md){.internal-link target=_blank} that uses SQLAlchemy should be enough.
    
        Feel free to skip this.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Jan 16 13:23:25 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/body.md

    Die JSON-Schemas Ihrer Modelle werden Teil ihrer OpenAPI-generierten Schemas und werden in der interaktiven API Dokumentation angezeigt:
    
    <img src="/img/tutorial/body/image01.png">
    
    Und werden auch verwendet in der API-Dokumentation innerhalb jeder *Pfadoperation*, welche sie braucht:
    
    <img src="/img/tutorial/body/image02.png">
    
    ## Editor Unterstützung
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/body.md

    The JSON Schemas of your models will be part of your OpenAPI generated schema, and will be shown in the interactive API docs:
    
    <img src="/img/tutorial/body/image01.png">
    
    And will be also used in the API docs inside each *path operation* that needs them:
    
    <img src="/img/tutorial/body/image02.png">
    
    ## Editor support
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/websockets.md

    Sie sehen eine einfache Seite wie:
    
    <img src="/img/tutorial/websockets/image01.png">
    
    Sie können Nachrichten in das Eingabefeld tippen und absenden:
    
    <img src="/img/tutorial/websockets/image02.png">
    
    Und Ihre **FastAPI**-Anwendung mit WebSockets antwortet:
    
    <img src="/img/tutorial/websockets/image03.png">
    
    Sie können viele Nachrichten senden (und empfangen):
    
    <img src="/img/tutorial/websockets/image04.png">
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:17:58 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/path-operation-configuration.md

    ```
    
    Ela será claramente marcada como descontinuada nas documentações interativas:
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    
    Verifique como *operações de rota* descontinuadas e não descontinuadas se parecem:
    
    <img src="/img/tutorial/path-operation-configuration/image05.png">
    
    ## Resumindo
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Oct 17 05:59:11 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/path-operation-configuration.md

    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    ## 단일 *경로 작동* 지원중단
    
    단일 *경로 작동*을 없애지 않고 <abbr title="구식, 사용하지 않는것이 권장됨">지원중단</abbr>을 해야한다면, `deprecated` 매개변수를 전달하면 됩니다.
    
    ```Python hl_lines="16"
    {!../../../docs_src/path_operation_configuration/tutorial006.py!}
    ```
    
    대화형 문서에 지원중단이라고 표시됩니다.
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Feb 11 13:48:31 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  9. fastapi/background.py

        """
        A collection of background tasks that will be called after a response has been
        sent to the client.
    
        Read more about it in the
        [FastAPI docs for Background Tasks](https://fastapi.tiangolo.com/tutorial/background-tasks/).
    
        ## Example
    
        ```python
        from fastapi import BackgroundTasks, FastAPI
    
        app = FastAPI()
    
    
        def write_notification(email: str, message=""):
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  10. docs/zh/docs/tutorial/body.md

    Pydantic 模型的 JSON 概图是 OpenAPI 生成的概图部件,可在 API 文档中显示:
    
    <img src="/img/tutorial/body/image01.png">
    
    而且,还会用于 API 文档中使用了概图的*路径操作*:
    
    <img src="/img/tutorial/body/image02.png">
    
    ## 编辑器支持
    
    在编辑器中,函数内部均可使用类型提示、代码补全(如果接收的不是 Pydantic 模型,而是**字典**,就没有这样的支持):
    
    <img src="/img/tutorial/body/image03.png">
    
    还支持检查错误的类型操作:
    
    <img src="/img/tutorial/body/image04.png">
    
    这并非偶然,整个 **FastAPI** 框架都是围绕这种思路精心设计的。
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 6.5K bytes
    - Viewed (0)
Back to top