Skip to main content

Utility classes and functions for AnyIO

Project description

anyioutils

Utility classes and functions for AnyIO.

Task

task = anyioutils.create_task(my_async_func(), task_group) behaves the same as task = asyncio.create_task(my_async_func()) except that an existing task_group has to be passed for the task to be launched in the background.

You can also use task = anyioutils.Task(my_async_func()) and then launch the task with task_group.start_soon(task.wait), and/or await it with result = await task.wait().

from anyioutils import CancelledError, Task, create_task
from anyio import create_task_group, run, sleep

async def foo():
    return 1

async def bar():
    await sleep(float("inf"))

async def main():
    async with create_task_group() as tg:
        task = Task(foo())
        assert await task.wait() == 1

    try:
        async with create_task_group() as tg:
            task = create_task(bar(), tg)
            await sleep(0.1)
            task.cancel()
    except BaseExceptionGroup as exc_group:
        assert len(exc_group.exceptions) == 1
        assert type(exc_group.exceptions[0]) == CancelledError

run(main)

Future

anyioutils.Future behaves the same as asyncio.Future except that:

  • you cannot directly await an anyioutils.Future object, but through its .wait() method (unlike an asyncio.Future, but like an asyncio.Event),
  • cancelling an anyioutils.Future doesn't raise an anyio.get_cancelled_exc_class(), but an anyioutils.CancelledError.
from anyioutils import CancelledError, Future
from anyio import create_task_group, run

async def set_result(future):
    future.set_result("done")

async def cancel(future):
    future.cancel()

async def main():
    async with create_task_group() as tg:
        future0 = Future()
        tg.start_soon(set_result, future0)
        assert await future0.wait() == "done"

        future1 = Future()
        tg.start_soon(cancel, future1)
        try:
            await future1.wait()
        except CancelledError:
            assert future1.cancelled()

run(main)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

anyioutils-0.4.3.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

anyioutils-0.4.3-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file anyioutils-0.4.3.tar.gz.

File metadata

  • Download URL: anyioutils-0.4.3.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for anyioutils-0.4.3.tar.gz
Algorithm Hash digest
SHA256 f1b6cfb620eb00534c353d98af0f8edba7b4b5635651fb47f72e28988ac21fce
MD5 774e197ed7b89009c6c3e4d71da8c699
BLAKE2b-256 4541f9c95a7ae78160921e4afe6ebac1a67b3e18ad6f004be09033488fa1c7d7

See more details on using hashes here.

File details

Details for the file anyioutils-0.4.3-py3-none-any.whl.

File metadata

  • Download URL: anyioutils-0.4.3-py3-none-any.whl
  • Upload date:
  • Size: 5.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for anyioutils-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 95ccaa3b2a39f62f21421cacda31e440249de16276f62a41eb41533f5d853db8
MD5 a0717e4a382aa807cb8abe3a488c4bc8
BLAKE2b-256 44c75d56a5c4e8baf673225d667e1ca71cd45ff4a414bbb17ff77235038a2b41

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page