Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 376 for Starlettes (0.05 seconds)

  1. docs/ko/docs/advanced/events.md

    내부적으로 ASGI 기술 사양에서는 이것이 [Lifespan Protocol](https://asgi.readthedocs.io/en/latest/specs/lifespan.html)의 일부이며, `startup`과 `shutdown`이라는 이벤트를 정의합니다.
    
    /// info | 정보
    
    Starlette `lifespan` 핸들러에 대해서는 [Starlette의 Lifespan 문서](https://www.starlette.dev/lifespan/)에서 더 읽어볼 수 있습니다.
    
    또한 코드의 다른 영역에서 사용할 수 있는 lifespan 상태를 처리하는 방법도 포함되어 있습니다.
    
    ///
    
    ## 서브 애플리케이션 { #sub-applications }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 9.1K bytes
    - Click Count (0)
  2. docs/pt/docs/benchmarks.md

        * Se você quer fazer comparações com o Starlette, compare com Sanic, Flask, Django, etc. _Frameworks Web_ (ou _microframeworks_).
    * **FastAPI**:
        * Do mesmo modo que Starlette utiliza Uvicorn e não pode ser mais rápido que ele, **FastAPI** utiliza o Starlette, então não tem como ser mais rápido do que o Starlette.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  3. docs/uk/docs/how-to/graphql.md

    ## Застарілий `GraphQLApp` зі Starlette { #older-graphqlapp-from-starlette }
    
    Попередні версії Starlette містили клас `GraphQLApp` для інтеграції з [Graphene](https://graphene-python.org/).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  4. docs/ru/docs/advanced/using-request-directly.md

    Подробнее об [объекте `Request` на официальном сайте документации Starlette](https://www.starlette.dev/requests/).
    
    /// note | Технические детали
    
    Вы также можете использовать `from starlette.requests import Request`.
    
    **FastAPI** предоставляет его напрямую для удобства разработчика, но сам объект приходит из Starlette.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  5. docs/en/docs/benchmarks.md

        * If you are comparing Starlette, compare it against Sanic, Flask, Django, etc. Web frameworks (or microframeworks).
    * **FastAPI**:
        * The same way that Starlette uses Uvicorn and cannot be faster than it, **FastAPI** uses Starlette, so it cannot be faster than it.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  6. docs/fr/docs/how-to/graphql.md

    ## Ancien `GraphQLApp` de Starlette { #older-graphqlapp-from-starlette }
    
    Les versions précédentes de Starlette incluaient une classe `GraphQLApp` pour s'intégrer à [Graphene](https://graphene-python.org/).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  7. docs/zh-hant/docs/advanced/using-request-directly.md

    同理,你可以照常宣告其他參數,並另外同時取得 `Request`。
    
    ///
    
    ## `Request` 文件 { #request-documentation }
    
    你可以在 [Starlette 官方文件站點中的 `Request` 物件](https://www.starlette.dev/requests/) 了解更多細節。
    
    /// note | 技術細節
    
    你也可以使用 `from starlette.requests import Request`。
    
    FastAPI 之所以直接提供它,是為了讓開發者更方便;但它本身是來自 Starlette
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  8. docs/uk/docs/advanced/templates.md

    ///
    
    /// note | Технічні деталі
    
    Можна також використати `from starlette.templating import Jinja2Templates`.
    
    **FastAPI** надає той самий `starlette.templating` як `fastapi.templating` просто для зручності для вас, розробника. Але більшість доступних відповідей надходять безпосередньо зі Starlette. Так само з `Request` і `StaticFiles`.
    
    ///
    
    ## Створення шаблонів { #writing-templates }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  9. docs/en/docs/advanced/response-cookies.md

    ### More info { #more-info }
    
    /// note | Technical Details
    
    You could also use `from starlette.responses import Response` or `from starlette.responses import JSONResponse`.
    
    **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.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  10. .github/workflows/test.yml

            if: matrix.uv-resolution == 'lowest-direct'
            run: uv pip install "pydantic==2.9.0"
          - name: Install Starlette from source
            if: matrix.starlette-src == 'starlette-git'
            run: uv pip install "git+https://github.com/Kludex/starlette@main"
          - run: mkdir coverage
          - name: Test
            run: uv run --no-sync bash scripts/test-cov.sh
            env:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 12:36:49 GMT 2026
    - 6.4K bytes
    - Click Count (0)
Back to Top