Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for read_results (0.04 sec)

  1. docs/ru/docs/async.md

    ```Python
    results = await some_library()
    ```
    
    Тогда объявляйте *функции-обработчики пути* с `async def`, например:
    
    ```Python hl_lines="2"
    @app.get('/')
    async def read_results():
        results = await some_library()
        return results
    ```
    
    /// note | Примечание
    
    `await` можно использовать только внутри функций, объявленных с `async def`.
    
    ///
    
    ---
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 11:24:39 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  2. docs/pt/docs/async.md

    ```Python
    results = await some_library()
    ```
    
    Então, declare suas *funções de operação de rota* com `async def` como:
    
    ```Python hl_lines="2"
    @app.get('/')
    async def read_results():
        results = await some_library()
        return results
    ```
    
    /// note | Nota
    
    Você só pode usar `await` dentro de funções criadas com `async def`.
    
    ///
    
    ---
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  3. docs/es/docs/async.md

    ```Python
    results = await some_library()
    ```
    
    Entonces, declara tus *path operation functions* con `async def` así:
    
    ```Python hl_lines="2"
    @app.get('/')
    async def read_results():
        results = await some_library()
        return results
    ```
    
    /// note | Nota
    
    Solo puedes usar `await` dentro de funciones creadas con `async def`.
    
    ///
    
    ---
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:15:01 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top