Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 337 for starlette (0.05 sec)

  1. docs/em/docs/tutorial/request-files.md

    {!> ../../docs_src/request_files/tutorial002_py39.py!}
    ```
    
    ////
    
    👆 🔜 📨, 📣, `list` `bytes` ⚖️ `UploadFile`Ⓜ.
    
    /// note | "📡 ℹ"
    
    👆 💪 ⚙️ `from starlette.responses import HTMLResponse`.
    
    **FastAPI** 🚚 🎏 `starlette.responses` `fastapi.responses` 🏪 👆, 👩‍💻. ✋️ 🌅 💪 📨 👟 🔗 ⚪️➡️ 💃.
    
    ///
    
    ### 💗 📁 📂 ⏮️ 🌖 🗃
    
    & 🎏 🌌 ⏭, 👆 💪 ⚙️ `File()` ⚒ 🌖 🔢, `UploadFile`:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. tests/test_custom_route_class.py

    import pytest
    from fastapi import APIRouter, FastAPI
    from fastapi.routing import APIRoute
    from fastapi.testclient import TestClient
    from starlette.routing import Route
    
    app = FastAPI()
    
    
    class APIRouteA(APIRoute):
        x_type = "A"
    
    
    class APIRouteB(APIRoute):
        x_type = "B"
    
    
    class APIRouteC(APIRoute):
        x_type = "C"
    
    
    router_a = APIRouter(route_class=APIRouteA)
    router_b = APIRouter(route_class=APIRouteB)
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. docs/uk/docs/tutorial/first-steps.md

    `FastAPI` це клас у Python, який надає всю функціональність для API.
    
    /// note | "Технічні деталі"
    
    `FastAPI` це клас, який успадковується безпосередньо від `Starlette`.
    
    Ви також можете використовувати всю функціональність <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> у `FastAPI`.
    
    ///
    
    ### Крок 2: створюємо екземпляр `FastAPI`
    
    ```Python hl_lines="3"
    {!../../docs_src/first_steps/tutorial001.py!}
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. docs/bn/docs/index.md

    ## প্রয়োজনীয়তা গুলো
    
    Python 3.7+
    
    FastAPI কিছু দানবেদের কাঁধে দাঁড়িয়ে আছে:
    
    - <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> ওয়েব অংশের জন্য.
    - <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> ডেটা অংশগুলির জন্য.
    
    ## ইনস্টলেশন প্রক্রিয়া
    
    <div class="termy">
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/path-params.md

    Nevertheless, you can still do it in **FastAPI**, using one of the internal tools from Starlette.
    
    And the docs would still work, although not adding any documentation telling that the parameter should contain a path.
    
    ### Path convertor
    
    Using an option directly from Starlette you can declare a *path parameter* containing a *path* using a URL like:
    
    ```
    /files/{file_path:path}
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. docs/es/docs/tutorial/path-params.md

    Sin embargo, lo puedes hacer en **FastAPI** usando una de las herramientas internas de Starlette.
    
    La documentación seguirá funcionando, aunque no añadirá ninguna información diciendo que el parámetro debería contener un path.
    
    ### Convertidor de path
    
    Usando una opción directamente desde Starlette puedes declarar un *parámetro de path* que contenga un path usando una URL como:
    
    ```
    /files/{file_path:path}
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. docs/ja/docs/history-design-future.md

    そして、JSON Schemaに完全に準拠するようにしたり、制約宣言を定義するさまざまな方法をサポートしたり、いくつかのエディターでのテストに基づいてエディターのサポート (型チェック、自動補完) を改善するために貢献しました。
    
    開発中、もう1つの重要な鍵となる<a href="https://www.starlette.io/" class="external-link" target="_blank">**Starlette**</a>、にも貢献しました。
    
    ## 開発
    
    私が**FastAPI**自体の作成を開始した時には、ほとんどの部分がすでに準備されており、設計が定義され、必要な条件とツールの準備ができていました。そして規格や仕様に関する知識が、明確になり、更新されていました。
    
    ## これから
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. docs/zh/docs/tutorial/cors.md

    /// note | "技术细节"
    
    你也可以使用 `from starlette.middleware.cors import CORSMiddleware`。
    
    出于方便,**FastAPI** 在 `fastapi.middleware` 中为开发者提供了几个中间件。但是大多数可用的中间件都是直接来自 Starlette
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. docs/vi/docs/tutorial/first-steps.md

    ```
    
    `FastAPI` là một Python class cung cấp tất cả chức năng cho API của bạn.
    
    /// note | "Chi tiết kĩ thuật"
    
    `FastAPI` là một class kế thừa trực tiếp `Starlette`.
    
    Bạn cũng có thể sử dụng tất cả <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> chức năng với `FastAPI`.
    
    ///
    
    ### Bước 2: Tạo một `FastAPI` "instance"
    
    ```Python hl_lines="3"
    {!../../docs_src/first_steps/tutorial001.py!}
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/path-params.md

    Тем не менее это можно сделать в **FastAPI**, используя один из внутренних инструментов Starlette.
    
    Документация по-прежнему будет работать, хотя и не добавит никакой информации о том, что параметр должен содержать путь.
    
    ### Конвертер пути
    
    Благодаря одной из опций Starlette, можете объявить *параметр пути*, содержащий *путь*, используя URL вроде:
    
    ```
    /files/{file_path:path}
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top