Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 453 for starlette (0.07 seconds)

  1. docs/ja/docs/tutorial/background-tasks.md

    そして、*path operation function* で生成された別のバックグラウンドタスクは、`email` パスパラメータを使用してメッセージを書き込みます。
    
    ## 技術的な詳細 { #technical-details }
    
    `BackgroundTasks` クラスは、[`starlette.background`](https://www.starlette.dev/background/) から直接取得されます。
    
    これは、FastAPI に直接インポート/インクルードされるため、`fastapi` からインポートできる上に、`starlette.background`から別の `BackgroundTask` (末尾に `s` がない) を誤ってインポートすることを回避できます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  2. docs/ja/docs/tutorial/response-status-code.md

    それらは単なる便利なものであり、同じ番号を保持しています。しかし、その方法ではエディタの自動補完を使用してそれらを見つけることができます。
    
    <img src="/img/tutorial/response-status-code/image02.png">
    
    /// note | 技術詳細
    
    また、`from starlette import status`を使うこともできます。
    
    **FastAPI** は、開発者の利便性を考慮して、fastapi.statusと同じ`starlette.status`を提供しています。しかし、これはStarletteから直接提供されています。
    
    ///
    
    ## デフォルトの変更 { #changing-the-default }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  3. docs/en/docs/index.md

    **Typer** is FastAPI's little sibling. And it's intended to be the **FastAPI of CLIs**. ⌨️ 🚀
    
    ## Requirements { #requirements }
    
    FastAPI stands on the shoulders of giants:
    
    * [Starlette](https://www.starlette.dev/) for the web parts.
    * [Pydantic](https://docs.pydantic.dev/) for the data parts.
    
    ## Installation { #installation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  4. docs/zh/docs/index.md

    **Typer** 是 FastAPI 的小同胞。它的目标是成为**命令行中的 FastAPI**。⌨️ 🚀
    
    ## 依赖 { #requirements }
    
    FastAPI 站在巨人的肩膀之上:
    
    * [Starlette](https://www.starlette.dev/) 负责 Web 部分。
    * [Pydantic](https://docs.pydantic.dev/) 负责数据部分。
    
    ## 安装 { #installation }
    
    创建并激活一个 [虚拟环境](https://fastapi.tiangolo.com/zh/virtual-environments/),然后安装 FastAPI:
    
    <div class="termy">
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 20.7K bytes
    - Click Count (0)
  5. docs/en/docs/tutorial/testing.md

    This allows you to use `pytest` directly without complications.
    
    ///
    
    /// note | Technical Details
    
    You could also use `from starlette.testclient import TestClient`.
    
    **FastAPI** provides the same `starlette.testclient` as `fastapi.testclient` just as a convenience for you, the developer. But it comes directly from Starlette.
    
    ///
    
    /// tip
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  6. CITATION.cff

    url: 'https://fastapi.tiangolo.com'
    abstract: >-
      FastAPI framework, high performance, easy to learn, fast to code,
      ready for production
    keywords:
      - fastapi
      - pydantic
      - starlette
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Jul 29 23:35:07 GMT 2024
    - 614 bytes
    - Click Count (0)
  7. docs/en/docs/reference/middleware.md

    # Middleware
    
    There are several middlewares available provided by Starlette directly.
    
    Read more about them in the [FastAPI docs for Middleware](https://fastapi.tiangolo.com/advanced/middleware/).
    
    ::: fastapi.middleware.cors.CORSMiddleware
    
    It can be imported from `fastapi`:
    
    ```python
    from fastapi.middleware.cors import CORSMiddleware
    ```
    
    ::: fastapi.middleware.gzip.GZipMiddleware
    
    It can be imported from `fastapi`:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 04 11:54:23 GMT 2026
    - 845 bytes
    - Click Count (0)
  8. docs/zh-hant/docs/advanced/additional-status-codes.md

    不會再經過模型序列化等處理。
    
    請確認其中包含你要的資料,且各值是合法的 JSON(如果你使用的是 `JSONResponse`)。
    
    ///
    
    /// note | 技術細節
    
    你也可以使用 `from starlette.responses import JSONResponse`。
    
    **FastAPI** 也將同樣的 `starlette.responses` 以 `fastapi.responses` 的形式提供,純粹是為了讓你(開發者)更方便。但大多數可用的回應類別其實都直接來自 Starlette。`status` 也一樣。
    
    ///
    
    ## OpenAPI 與 API 文件 { #openapi-and-api-docs }
    
    如果你直接回傳額外的狀態碼與回應,它們不會被包含進 OpenAPI 綱要(API 文件)中,因為 FastAPI 無法事先知道你會回傳什麼。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  9. docs/es/docs/index.md

    **Typer** es el hermano pequeño de FastAPI. Y está destinado a ser el **FastAPI de las CLIs**. ⌨️ 🚀
    
    ## Requisitos { #requirements }
    
    FastAPI se apoya en hombros de gigantes:
    
    * [Starlette](https://www.starlette.dev/) para las partes web.
    * [Pydantic](https://docs.pydantic.dev/) para las partes de datos.
    
    ## Instalación { #installation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 22.6K bytes
    - Click Count (0)
  10. docs/pt/docs/index.md

    **Typer** é o irmão menor do FastAPI. E seu propósito é ser o **FastAPI das CLIs**. ⌨️ 🚀
    
    ## Requisitos { #requirements }
    
    FastAPI está nos ombros de gigantes:
    
    * [Starlette](https://www.starlette.dev/) para as partes web.
    * [Pydantic](https://docs.pydantic.dev/) para a parte de dados.
    
    ## Instalação { #installation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 22.7K bytes
    - Click Count (0)
Back to Top