Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 262 for asgi (0.04 seconds)

  1. docs/uk/docs/deployment/manually.md

    ## Сервери ASGI { #asgi-servers }
    
    Розгляньмо деталі.
    
    FastAPI використовує стандарт для побудови Python вебфреймворків і серверів під назвою <abbr title="Asynchronous Server Gateway Interface - Асинхронний шлюзовий інтерфейс сервера">ASGI</abbr>. FastAPI - це ASGI вебфреймворк.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 9.1K bytes
    - Click Count (0)
  2. docs/de/docs/deployment/manually.md

    ## ASGI-Server { #asgi-servers }
    
    Lassen Sie uns ein wenig tiefer in die Details eintauchen.
    
    FastAPI verwendet einen Standard zum Erstellen von Python-Webframeworks und -Servern, der als <abbr title="Asynchrones Server-Gateway-Interface">ASGI</abbr> bekannt ist. FastAPI ist ein ASGI-Webframework.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  3. docs/ja/docs/advanced/middleware.md

    このセクションでは、その他のミドルウェアの使い方を見ていきます。
    
    ## ASGI ミドルウェアの追加 { #adding-asgi-middlewares }
    
    **FastAPI** は Starlette を基盤としており、<abbr title="Asynchronous Server Gateway Interface - 非同期サーバーゲートウェイインターフェース">ASGI</abbr> 仕様を実装しているため、任意の ASGI ミドルウェアを利用できます。
    
    ミドルウェアは ASGI 仕様に従っていれば、FastAPI や Starlette 専用に作られていなくても動作します。
    
    一般に、ASGI ミドルウェアは最初の引数として ASGI アプリを受け取るクラスです。
    
    そのため、サードパーティの ASGI ミドルウェアのドキュメントでは、おそらく次のように書かれているでしょう:
    
    ```Python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/advanced/middleware.md

    你也讀過如何處理 [使用 `CORSMiddleware` 的 CORS](../tutorial/cors.md)。
    
    本節將示範如何使用其他中介軟體。
    
    ## 新增 ASGI 中介軟體 { #adding-asgi-middlewares }
    
    由於 **FastAPI** 建立在 Starlette 上並實作了 <abbr title="Asynchronous Server Gateway Interface - 非同步伺服器閘道介面">ASGI</abbr> 規範,你可以使用任何 ASGI 中介軟體。
    
    中介軟體不一定要為 FastAPI 或 Starlette 專門撰寫,只要遵循 ASGI 規範即可運作。
    
    一般來說,ASGI 中介軟體是類別,預期第一個參數接收一個 ASGI 應用程式。
    
    因此,在第三方 ASGI 中介軟體的文件中,通常會指示你這樣做:
    
    ```Python
    from unicorn import UnicornMiddleware
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  5. docs/en/docs/advanced/middleware.md

    ## Adding ASGI middlewares { #adding-asgi-middlewares }
    
    As **FastAPI** is based on Starlette and implements the <abbr title="Asynchronous Server Gateway Interface">ASGI</abbr> specification, you can use any ASGI middleware.
    
    A middleware doesn't have to be made for FastAPI or Starlette to work, as long as it follows the ASGI spec.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  6. docs/fr/docs/deployment/manually.md

    ## Serveurs ASGI { #asgi-servers }
    
    Allons un peu plus en détail.
    
    FastAPI utilise un standard pour construire des frameworks web Python et des serveurs appelé <abbr title="Asynchronous Server Gateway Interface - Interface passerelle serveur asynchrone">ASGI</abbr>. FastAPI est un framework web ASGI.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 7.4K bytes
    - Click Count (0)
  7. docs/en/docs/deployment/manually.md

    ## ASGI Servers { #asgi-servers }
    
    Let's go a little deeper into the details.
    
    FastAPI uses a standard for building Python web frameworks and servers called <abbr title="Asynchronous Server Gateway Interface">ASGI</abbr>. FastAPI is an ASGI web framework.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  8. docs/es/docs/deployment/manually.md

    Hay varias alternativas, incluyendo:
    
    * [Uvicorn](https://www.uvicorn.dev/): un servidor ASGI de alto rendimiento.
    * [Hypercorn](https://hypercorn.readthedocs.io/): un servidor ASGI compatible con HTTP/2 y Trio entre otras funcionalidades.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 7K bytes
    - Click Count (0)
  9. docs/zh/docs/deployment/manually.md

    这在大多数情况下都能正常运行。😎
    
    例如,您可以使用该命令在容器、服务器等环境中启动您的 **FastAPI** 应用。
    
    ## ASGI 服务器 { #asgi-servers }
    
    让我们深入了解一些细节。
    
    FastAPI 使用了一种用于构建 Python Web 框架和服务器的标准,称为 <abbr title="Asynchronous Server Gateway Interface - 异步服务器网关接口">ASGI</abbr>。FastAPI 本质上是一个 ASGI Web 框架。
    
    要在远程服务器上运行 **FastAPI** 应用(或任何其他 ASGI 应用),您需要一个 ASGI 服务器程序,例如 **Uvicorn**。它是 `fastapi` 命令默认使用的 ASGI 服务器。
    
    除此之外,还有其他一些可选的 ASGI 服务器,例如:
    
    * [Uvicorn](https://www.uvicorn.dev/): 高性能 ASGI 服务器。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/deployment/manually.md

    這在多數情況下都適用。😎
    
    你可以用這個指令在容器、伺服器等環境中啟動你的 FastAPI 應用。
    
    ## ASGI 伺服器 { #asgi-servers }
    
    我們再深入一些細節。
    
    FastAPI 採用建立 Python 網頁框架與伺服器的標準 <abbr title="Asynchronous Server Gateway Interface - 非同步伺服器閘道介面">ASGI</abbr>。FastAPI 是一個 ASGI 網頁框架。
    
    在遠端伺服器機器上執行 FastAPI 應用(或任何 ASGI 應用)所需的關鍵是 ASGI 伺服器程式,例如 Uvicorn;`fastapi` 指令預設就是使用它。
    
    有數個替代方案,包括:
    
    * [Uvicorn](https://www.uvicorn.dev/):高效能 ASGI 伺服器。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6.2K bytes
    - Click Count (0)
Back to Top