Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 560 for Img (0.01 sec)

  1. docs/uk/docs/index.md

        <img src="https://coverage-badge.samuelcolvin.workers.dev/fastapi/fastapi.svg" alt="Coverage">
    </a>
    <a href="https://pypi.org/project/fastapi" target="_blank">
        <img src="https://img.shields.io/pypi/v/fastapi?color=%2334D058&label=pypi%20package" alt="Package version">
    </a>
    <a href="https://pypi.org/project/fastapi" target="_blank">
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Oct 11 17:48:49 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/debugging.md

    * Den Debugger mit der Option „`Python: Current File (Integrated Terminal)`“ ausführen.
    
    Der Server wird dann mit Ihrem **FastAPI**-Code gestartet, an Ihren Haltepunkten angehalten, usw.
    
    So könnte es aussehen:
    
    <img src="/img/tutorial/debugging/image01.png">
    
    ---
    
    Wenn Sie Pycharm verwenden, können Sie:
    
    * Das Menü „Run“ öffnen.
    * Die Option „Debug ...“ auswählen.
    * Ein Kontextmenü wird angezeigt.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  3. docs/pt/docs/advanced/websockets.md

    Você verá uma página simples como:
    
    <img src="/img/tutorial/websockets/image01.png">
    
    Você pode digitar mensagens na caixa de entrada e enviá-las:
    
    <img src="/img/tutorial/websockets/image02.png">
    
    E sua aplicação **FastAPI** com WebSockets responderá de volta:
    
    <img src="/img/tutorial/websockets/image03.png">
    
    Você pode enviar (e receber) muitas mensagens:
    
    <img src="/img/tutorial/websockets/image04.png">
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6K bytes
    - Viewed (0)
  4. docs/ru/docs/how-to/configure-swagger-ui.md

    Без изменения настроек подсветка синтаксиса включена по умолчанию:
    
    <img src="/img/tutorial/extending-openapi/image02.png">
    
    Но вы можете отключить её, установив `syntaxHighlight` в `False`:
    
    {* ../../docs_src/configure_swagger_ui/tutorial001_py39.py hl[3] *}
    
    …и после этого Swagger UI больше не будет показывать подсветку синтаксиса:
    
    <img src="/img/tutorial/extending-openapi/image03.png">
    
    ## Изменить тему { #change-the-theme }
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  5. docs/zh/docs/advanced/websockets.md

    您将看到一个简单的页面,如下所示:
    
    <img src="/img/tutorial/websockets/image01.png">
    
    您可以在输入框中输入消息并发送:
    
    <img src="/img/tutorial/websockets/image02.png">
    
    您的 **FastAPI** 应用程序将回复:
    
    <img src="/img/tutorial/websockets/image03.png">
    
    您可以发送(和接收)多条消息:
    
    <img src="/img/tutorial/websockets/image04.png">
    
    所有这些消息都将使用同一个 WebSocket 连
    
    接。
    
    ## 使用 `Depends` 和其他依赖项
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Oct 11 17:48:49 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/https.md

    <img src="/img/deployment/https/https01.drawio.svg">
    
    ### TLS Handshake Start { #tls-handshake-start }
    
    The browser would then communicate with that IP address on **port 443** (the HTTPS port).
    
    The first part of the communication is just to establish the connection between the client and the server and to decide the cryptographic keys they will use, etc.
    
    <img src="/img/deployment/https/https02.drawio.svg">
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Aug 31 19:34:08 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  7. docs/pt/docs/deployment/https.md

    <img src="/img/deployment/https/https05.drawio.svg">
    
    ### Resposta HTTP { #http-response }
    
    A aplicação processaria a solicitação e retornaria uma resposta HTTP básica (não encriptada) para o Proxy de Terminação TLS.
    
    <img src="/img/deployment/https/https06.drawio.svg">
    
    ### Resposta HTTPS { #https-response }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 14.8K bytes
    - Viewed (0)
  8. docs/en/docs/how-to/configure-swagger-ui.md

    Without changing the settings, syntax highlighting is enabled by default:
    
    <img src="/img/tutorial/extending-openapi/image02.png">
    
    But you can disable it by setting `syntaxHighlight` to `False`:
    
    {* ../../docs_src/configure_swagger_ui/tutorial001_py39.py hl[3] *}
    
    ...and then Swagger UI won't show the syntax highlighting anymore:
    
    <img src="/img/tutorial/extending-openapi/image03.png">
    
    ## Change the Theme { #change-the-theme }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  9. docs/ru/docs/async.md

    Вы идёте со своей возлюбленной за фастфудом, вы стоите в очереди, пока кассир принимает заказы у людей перед вами. 😍
    
    <img src="/img/async/concurrent-burgers/concurrent-burgers-01.png" class="illustration">
    
    Наконец ваша очередь: вы заказываете 2 очень «навороченных» бургера — для вашей возлюбленной и для себя. 🍔🍔
    
    <img src="/img/async/concurrent-burgers/concurrent-burgers-02.png" class="illustration">
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 11:24:39 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  10. docs/ru/docs/index.md

    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor -%}
    
    ### Золотые и серебряные спонсоры { #gold-and-silver-sponsors }
    
    {% for sponsor in sponsors.gold -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor -%}
    {%- for sponsor in sponsors.silver -%}
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 21:25:03 UTC 2025
    - 32K bytes
    - Viewed (0)
Back to top