Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 453 for starlette (0.12 seconds)

  1. docs/de/llm-prompt.md

    * to serve: NOT bedienen
    * to upgrade: aktualisieren
    * to wrap: wrappen
    * to wrap: NOT hüllen
    * `foo` as a `type`: `foo` vom Typ `type`
    * `foo` as a `type`: `foo`, ein `type`
    * FastAPI's X: FastAPIs X
    * Starlette's Y: Starlettes Y
    * X is case-sensitive: Groß-/Klein­schrei­bung ist relevant in X
    * X is case-insensitive: Groß-/Klein­schrei­bung ist nicht relevant in X
    * standard Python: Standard-Python
    * deprecated: deprecatet
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Dec 29 18:54:20 GMT 2025
    - 9.8K bytes
    - Click Count (0)
  2. docs/ko/docs/benchmarks.md

    * **Starlette**:
        * Uvicorn 다음으로 좋은 성능을 발휘합니다. 사실 Starlette는 Uvicorn을 사용하여 실행됩니다. 따라서 더 많은 코드를 실행해야 하기 때문에 Uvicorn보다 "느려질" 수밖에 없습니다.
        * 하지만 경로 기반 라우팅 등 간단한 웹 응용 프로그램을 구축할 수 있는 도구를 제공합니다.
        * Starlette를 비교할 때는 Sanic, Flask, Django 등의 웹 프레임워크(또는 마이크로 프레임워크)와 비교하세요.
    * **FastAPI**:
        * Starlette가 Uvicorn을 사용하므로 Uvicorn보다 빨라질 수 없는 것과 마찬가지로, **FastAPI**는 Starlette를 사용하므로 더 빠를 수 없습니다.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 4K bytes
    - Click Count (0)
  3. docs/en/docs/advanced/behind-a-proxy.md

    In these cases you can use `root_path` to configure your application.
    
    The `root_path` is a mechanism provided by the ASGI specification (that FastAPI is built on, through Starlette).
    
    The `root_path` is used to handle these specific cases.
    
    And it's also used internally when mounting sub-applications.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  4. docs/ko/docs/tutorial/handling-errors.md

    하지만 예외 핸들러를 등록할 때는 Starlette의 `HTTPException`에 대해 등록해야 합니다.
    
    이렇게 하면 Starlette 내부 코드의 어떤 부분, 또는 Starlette 확장/플러그인이 Starlette `HTTPException`을 `raise`하더라도, 여러분의 핸들러가 이를 잡아서 처리할 수 있습니다.
    
    이 예시에서는 동일한 코드에서 두 `HTTPException`을 모두 사용할 수 있도록, Starlette의 예외를 `StarletteHTTPException`으로 이름을 바꿉니다:
    
    ```Python
    from starlette.exceptions import HTTPException as StarletteHTTPException
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  5. docs/de/docs/tutorial/handling-errors.md

    Sie können also weiterhin die `HTTPException` von **FastAPI** wie üblich in Ihrem Code auslösen.
    
    Aber wenn Sie einen Exceptionhandler registrieren, sollten Sie ihn für die `HTTPException` von Starlette registrieren.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  6. docs/ru/docs/tutorial/handling-errors.md

    Таким образом, вы можете продолжать вызывать `HTTPException` от **FastAPI** как обычно в своем коде.
    
    Но когда вы регистрируете обработчик исключений, вы должны зарегистрировать его для `HTTPException` от Starlette.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 14K bytes
    - Click Count (0)
  7. docs/zh-hant/docs/advanced/behind-a-proxy.md

    ## 具有移除路徑前綴的代理 { #proxy-with-a-stripped-path-prefix }
    
    你可能會有一個會為你的應用加入路徑前綴的代理。
    
    在這些情況下,你可以使用 `root_path` 來設定你的應用。
    
    `root_path` 是 ASGI 規格(FastAPI 透過 Starlette 所遵循的規格)所提供的機制。
    
    `root_path` 用來處理這些特定情境。
    
    在掛載子應用時,內部也會使用它。
    
    這種「具有移除路徑前綴的代理」情況,代表你在程式碼中宣告了 `/app` 的路徑,但你在上面又加了一層(代理),把你的 FastAPI 應用放在像是 `/api/v1` 這樣的路徑底下。
    
    在這種情況下,原本的 `/app` 路徑實際上會以 `/api/v1/app` 對外提供服務。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  8. docs/fr/docs/tutorial/handling-errors.md

    Ainsi, vous pouvez continuer à lever la `HTTPException` de **FastAPI** normalement dans votre code.
    
    Mais lorsque vous enregistrez un gestionnaire d'exception, vous devez l'enregistrer pour la `HTTPException` de Starlette.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 10K bytes
    - Click Count (0)
  9. docs/zh/docs/tutorial/handling-errors.md

    但注册异常处理器时,应该注册到来自 Starlette 的 `HTTPException`。
    
    这样做是为了,当 Starlette 的内部代码、扩展或插件触发 Starlette `HTTPException` 时,你的处理器能够捕获并处理它。
    
    本例中,为了在同一份代码中同时使用两个 `HTTPException`,将 Starlette 的异常重命名为 `StarletteHTTPException`:
    
    ```Python
    from starlette.exceptions import HTTPException as StarletteHTTPException
    ```
    
    ### 复用 **FastAPI** 的异常处理器 { #reuse-fastapis-exception-handlers }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  10. docs/es/docs/tutorial/handling-errors.md

    Así que puedes seguir lanzando un `HTTPException` de **FastAPI** como de costumbre en tu código.
    
    Pero cuando registras un manejador de excepciones, deberías registrarlo para el `HTTPException` de Starlette.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 9.6K bytes
    - Click Count (0)
Back to Top