Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 453 for starlette (0.06 seconds)

  1. docs/tr/docs/index.md

    **Typer**, FastAPI'ın küçük kardeşi. Ve hedefi CLI'ların **FastAPI'ı** olmak. ⌨️ 🚀
    
    ## Gereksinimler { #requirements }
    
    FastAPI iki devin omuzları üstünde duruyor:
    
    * Web kısımları için [Starlette](https://www.starlette.dev/).
    * Data kısımları için [Pydantic](https://docs.pydantic.dev/).
    
    ## Kurulum { #installation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.2K bytes
    - Click Count (0)
  2. docs/fr/docs/index.md

    **Typer** est le petit frère de FastAPI. Et il est destiné à être le **FastAPI des CLIs**. ⌨️ 🚀
    
    ## Prérequis { #requirements }
    
    FastAPI repose sur les épaules de géants :
    
    * [Starlette](https://www.starlette.dev/) pour les parties web.
    * [Pydantic](https://docs.pydantic.dev/) pour les parties données.
    
    ## Installation { #installation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 23.8K bytes
    - Click Count (0)
  3. docs/ja/docs/advanced/websockets.md

    ///
    
    ## 詳細情報 { #more-info }
    
    オプションの詳細については、Starletteのドキュメントを確認してください。
    
    * [`WebSocket` クラス](https://www.starlette.dev/websockets/)。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  4. docs/ja/docs/advanced/additional-status-codes.md

    モデルなどによってシリアライズされません。
    
    必要なデータが含まれていること、そして(`JSONResponse` を使用している場合)値が有効な JSON であることを確認してください。
    
    ///
    
    /// note | 技術詳細
    
    `from starlette.responses import JSONResponse` を使うこともできます。
    
    **FastAPI** は開発者の利便性のために、`fastapi.responses` と同じ `starlette.responses` を提供しています。しかし、利用可能なレスポンスのほとんどは Starlette から直接提供されています。`status` も同様です。
    
    ///
    
    ## OpenAPI と API ドキュメント { #openapi-and-api-docs }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  5. README.md

    **Typer** is FastAPI's little sibling. And it's intended to be the **FastAPI of CLIs**. ⌨️ 🚀
    
    ## 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
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 24.3K bytes
    - Click Count (0)
  6. docs/ja/docs/index.md

    **Typer** は FastAPI の弟分です。そして、**CLI 版 FastAPI** を意図しています。 ⌨️ 🚀
    
    ## 必要条件 { #requirements }
    
    FastAPI は巨人の肩の上に立っています。
    
    * [Starlette](https://www.starlette.dev/)(Web 部分)
    * [Pydantic](https://docs.pydantic.dev/)(データ部分)
    
    ## インストール { #installation }
    
    [仮想環境](https://fastapi.tiangolo.com/ja/virtual-environments/) を作成して有効化し、それから FastAPI をインストールします。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 25.6K bytes
    - Click Count (0)
  7. docs/ja/docs/tutorial/path-operation-configuration.md

    {* ../../docs_src/path_operation_configuration/tutorial001_py310.py hl[1,15] *}
    
    そのステータスコードはレスポンスで使用され、OpenAPIスキーマに追加されます。
    
    /// note | 技術詳細
    
    `from starlette import status`を使用することもできます。
    
    **FastAPI** は開発者の利便性を考慮して、`fastapi.status`と同じ`starlette.status`を提供しています。しかし、これはStarletteから直接提供されています。
    
    ///
    
    ## タグ { #tags }
    
    `tags`パラメータを`str`の`list`(通常は1つの`str`)と一緒に渡すと、*path operation*にタグを追加できます:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  8. docs/en/docs/advanced/custom-response.md

    /// note | Technical Details
    
    You could also use `from starlette.responses import HTMLResponse`.
    
    **FastAPI** provides the same `starlette.responses` as `fastapi.responses` just as a convenience for you, the developer. But most of the available responses come directly from Starlette.
    
    ///
    
    ### `Response` { #response }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 11K bytes
    - Click Count (0)
  9. fastapi/routing.py

        is_body_allowed_for_status_code,
    )
    from starlette import routing
    from starlette._exception_handler import wrap_app_handling_exceptions
    from starlette._utils import is_async_callable
    from starlette.concurrency import iterate_in_threadpool, run_in_threadpool
    from starlette.datastructures import FormData
    from starlette.exceptions import HTTPException
    from starlette.requests import Request
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
  10. docs/zh-hant/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-hant/virtual-environments/),然後安裝 FastAPI:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 20.8K bytes
    - Click Count (0)
Back to Top