Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for AsyncIO (0.24 sec)

  1. docs/em/docs/async.md

    ### โœ ๐Ÿ‘† ๐Ÿ‘ ๐Ÿ” ๐Ÿ“Ÿ
    
    ๐Ÿ’ƒ (&amp; **FastAPI**) โš“๏ธ ๐Ÿ”› <a href="https://anyio.readthedocs.io/en/stable/" class="external-link" target="_blank">AnyIO</a>, โ” โš’ โšซ๏ธ ๐Ÿ”— โฎ๏ธ ๐Ÿ‘ฏโ€โ™‚๏ธ ๐Ÿ ๐Ÿฉ ๐Ÿ—ƒ <a href="https://docs.python.org/3/library/asyncio-task.html" class="external-link" target="_blank">โœณ</a> &amp; <a href="https://trio.readthedocs.io/en/stable/" class="external-link" target="_blank">๐ŸŽป</a>.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  2. docs/em/docs/how-to/sql-databases-peewee.md

    `threading.local` โœ ๐Ÿ’ฒ ๐ŸŒŸ โฎ๏ธ ๐Ÿงต, โœ‹๏ธ ๐Ÿ” ๐Ÿ› ๏ธ ๐Ÿ”œ ๐Ÿƒ ๐ŸŒ ๐Ÿ“Ÿ (โœ… ๐Ÿ”  ๐Ÿ“จ) ๐ŸŽ ๐Ÿงต, &amp; ๐ŸŽฒ ๐Ÿšซ โœ”.
    
    ๐Ÿ”› ๐Ÿ” ๐Ÿ‘ˆ, ๐Ÿ” ๐Ÿ› ๏ธ ๐Ÿ’ช ๐Ÿƒ ๐Ÿ” ๐Ÿ“Ÿ ๐Ÿงต (โš™๏ธ `asyncio.run_in_executor`), โœ‹๏ธ ๐Ÿ”— ๐ŸŽ ๐Ÿ“จ.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  3. docs/ja/docs/async.md

    ใงใฏใ€ใ“ใฎใƒ‹ใƒฏใƒˆใƒชใจๅตใฎๅ•้กŒใซใคใ„ใฆใ€ๆœ€ๅˆใฎ `async` ้–ขๆ•ฐใ‚’ใฉใฎใ‚ˆใ†ใซๅ‘ผใณๅ‡บใ™ใฎใงใ—ใ‚‡ใ†ใ‹๏ผŸ
    
    **FastAPI**ใ‚’ไฝฟ็”จใ—ใฆใ„ใ‚‹ๅ ดๅˆใ€ใใฎใ€Œๆœ€ๅˆใฎใ€้–ขๆ•ฐใŒ*path operation ้–ขๆ•ฐ*ใงใ‚ใ‚Šใ€FastAPIใŒๆญฃใ—ใๅฎŸ่กŒใ™ใ‚‹ๆ–นๆณ•ใ‚’็Ÿฅใฃใฆใ„ใ‚‹ใฎใงใ€ๅฟƒ้…ใ™ใ‚‹ๅฟ…่ฆใฏใ‚ใ‚Šใพใ›ใ‚“ใ€‚
    
    ใ—ใ‹ใ—ใ€FastAPIไปฅๅค–ใง `async` / `await` ใ‚’ไฝฟ็”จใ—ใŸใ„ๅ ดๅˆใฏใ€<a href="https://docs.python.org/3/library/asyncio-task.html#coroutine" class="external-link" target="_blank">ๅ…ฌๅผPythonใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆใ‚’ๅ‚็…งใ—ใฆไธ‹ใ•ใ„</a>ใ€‚
    
    ### ้žๅŒๆœŸใ‚ณใƒผใƒ‰ใฎไป–ใฎๅฝขๅผ
    
    `async` ใจ `await` ใ‚’ไฝฟ็”จใ™ใ‚‹ใ‚นใ‚ฟใ‚คใƒซใฏใ€ใ“ใฎ่จ€่ชžใงใฏๆฏ”่ผƒ็š„ๆ–ฐใ—ใ„ใ‚‚ใฎใงใ™ใ€‚
    
    ้žๅŒๆœŸใ‚ณใƒผใƒ‰ใฎๆ“ไฝœใŒใฏใ‚‹ใ‹ใซ็ฐกๅ˜ใซใชใ‚Šใพใ™ใ€‚
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 27.8K bytes
    - Viewed (0)
  4. fastapi/routing.py

    import asyncio
    import dataclasses
    import email.message
    import inspect
    import json
    from contextlib import AsyncExitStack
    from enum import Enum, IntEnum
    from typing import (
        Any,
        Callable,
        Coroutine,
        Dict,
        List,
        Optional,
        Sequence,
        Set,
        Tuple,
        Type,
        Union,
    )
    
    from fastapi import params
    from fastapi._compat import (
        ModelField,
        Undefined,
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    It upgrades the version of Starlette to `0.15.0`, now based on [AnyIO](https://anyio.readthedocs.io/en/stable/), and the internal async components in **FastAPI** are now based on AnyIO as well, making it compatible with both **asyncio** and **Trio**.
    
    You can read the docs about running [FastAPI with Trio using Hypercorn](https://fastapi.tiangolo.com/deployment/manually/#hypercorn-with-trio).
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
Back to top