- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for read_results (0.06 sec)
-
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)