Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 262 for asgi (0.04 seconds)

  1. docs/fr/docs/benchmarks.md

    La hiérarchie est la suivante :
    
    * **Uvicorn** : un serveur ASGI
        * **Starlette** : (utilise Uvicorn) un microframework web
            * **FastAPI**: (utilise Starlette) un microframework pour API disposant de fonctionnalités additionnelles pour la création d'API, avec la validation des données, etc.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  2. docs/uk/docs/how-to/custom-request-and-route.md

    Також `Request` має `request.receive` - це функція для «отримання» тіла запиту.
    
    `scope` `dict` і функція `receive` є частиною специфікації ASGI.
    
    І саме ці дві сутності - `scope` та `receive` - потрібні для створення нового екземпляра `Request`.
    
    Щоб дізнатися більше про `Request`, перегляньте [документацію Starlette про запити](https://www.starlette.dev/requests/).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  3. docs/tr/docs/how-to/custom-request-and-route.md

    Bir `Request` ayrıca `request.receive` içerir; bu, request'in body'sini "almak" (receive etmek) için kullanılan bir fonksiyondur.
    
    `scope` `dict`'i ve `receive` fonksiyonu, ASGI spesifikasyonunun parçalarıdır.
    
    Ve bu iki şey, `scope` ve `receive`, yeni bir `Request` instance'ı oluşturmak için gerekenlerdir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  4. docs/fr/docs/alternatives.md

    /// note | Détails techniques
    
    ASGI est une nouvelle « norme » développée par les membres de l'équipe principale de Django. Il ne s'agit pas encore d'une « norme Python » (un PEP), bien qu'ils soient en train de le faire.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 26.6K bytes
    - Click Count (0)
  5. docs/fr/docs/advanced/behind-a-proxy.md

    Vous pouvez avoir un proxy qui ajoute un préfixe de chemin à votre application.
    
    Dans ces cas, vous pouvez utiliser `root_path` pour configurer votre application.
    
    Le `root_path` est un mécanisme fourni par la spécification ASGI (sur laquelle FastAPI est construit, via Starlette).
    
    Le `root_path` est utilisé pour gérer ces cas spécifiques.
    
    Et il est également utilisé en interne lors du montage de sous‑applications.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  6. docs/pt/docs/advanced/behind-a-proxy.md

    A especificação ASGI define um `root_path` para esse caso de uso.
    
    E a opção de linha de comando `--root-path` fornece esse `root_path`.
    
    ///
    
    ### Verificando o `root_path` atual { #checking-the-current-root-path }
    
    Você pode obter o `root_path` atual usado pela sua aplicação para cada solicitação, ele faz parte do dicionário `scope` (que faz parte da especificação ASGI).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  7. docs/uk/docs/benchmarks.md

    Чим простіше завдання, яке розв'язує інструмент, тим кращою буде продуктивність. І більшість бенчмарків не перевіряють додаткові можливості, що надає інструмент.
    
    Ієрархія приблизно така:
    
    * **Uvicorn**: сервер ASGI
        * **Starlette**: (використовує Uvicorn) веб-мікрофреймворк
            * **FastAPI**: (використовує Starlette) мікрофреймворк для API з низкою додаткових можливостей для створення API, з валідацією даних тощо.
    
    * **Uvicorn**:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 5.9K bytes
    - Click Count (0)
  8. docs/es/docs/how-to/custom-request-and-route.md

    Un `Request` también tiene un `request.receive`, que es una función para "recibir" el request body.
    
    El `dict` `scope` y la función `receive` son ambos parte de la especificación ASGI.
    
    Y esas dos cosas, `scope` y `receive`, son lo que se necesita para crear una nueva *Request instance*.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  9. docs/zh/docs/advanced/events.md

    启动和关闭的逻辑很可能是连接在一起的,你可能希望启动某个东西然后结束它,获取一个资源然后释放它等等。
    
    在不共享逻辑或变量的不同函数中处理这些逻辑比较困难,因为你需要在全局变量中存储值或使用类似的方式。
    
    因此,推荐使用上面所述的 `lifespan`。
    
    ## 技术细节 { #technical-details }
    
    只是为好奇者提供的技术细节。🤓
    
    在底层,这部分是 ASGI 技术规范中的 [Lifespan 协议](https://asgi.readthedocs.io/en/latest/specs/lifespan.html)的一部分,定义了称为 `startup` 和 `shutdown` 的事件。
    
    /// info | 信息
    
    你可以在 [Starlette 的 Lifespan 文档](https://www.starlette.dev/lifespan/) 中阅读更多关于 `lifespan` 处理器的内容。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  10. docs/de/docs/advanced/behind-a-proxy.md

    In diesen Fällen können Sie <abbr title="Wurzelpfad">`root_path`</abbr> verwenden, um Ihre Anwendung zu konfigurieren.
    
    Der `root_path` ist ein Mechanismus, der von der ASGI-Spezifikation bereitgestellt wird (auf der FastAPI via Starlette aufbaut).
    
    Der `root_path` wird verwendet, um diese speziellen Fälle zu handhaben.
    
    Und er wird auch intern beim Mounten von Unteranwendungen verwendet.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 18K bytes
    - Click Count (0)
Back to Top