Skip to main content

async wrapper

Project description

async-wrapper

License: MIT github action PyPI version python version

how to install

$ pip install async_wrapper

how to use

from __future__ import annotations

import time

import anyio

from async_wrapper import TaskGroupWrapper, toggle_func


@toggle_func
async def sample_func() -> int:
    await anyio.sleep(1)
    return 1


async def sample_func_2(x: int) -> int:
    await anyio.sleep(1)
    return x


def main():
    result = sample_func()
    assert isinstance(result, int)
    assert result == 1


async def async_main():
    semaphore = anyio.Semaphore(2)

    start = time.perf_counter()
    async with anyio.create_task_group() as task_group:
        wrapper = TaskGroupWrapper(task_group)
        func = wrapper.wrap(sample_func_2, semaphore)
        value_1 = func(1)
        value_2 = func(2)
        value_3 = func(3)
    end = time.perf_counter()

    assert isinstance(value_1.value, int)
    assert isinstance(value_2.value, int)
    assert isinstance(value_3.value, int)
    assert value_1.value == 1
    assert value_2.value == 2
    assert value_3.value == 3
    assert 1.5 < end - start < 2.5


if __name__ == "__main__":
    main()
    anyio.run(async_main)

License

MIT, see LICENSE.

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

async_wrapper-0.4.5.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

async_wrapper-0.4.5-py3-none-any.whl (13.3 kB view details)

Uploaded Python 3

File details

Details for the file async_wrapper-0.4.5.tar.gz.

File metadata

  • Download URL: async_wrapper-0.4.5.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.10.6 Linux/5.15.0-1042-azure

File hashes

Hashes for async_wrapper-0.4.5.tar.gz
Algorithm Hash digest
SHA256 acedd917fd54dab5888a5e9bb3ba7e551a2ecdca1d9fe307396f06da8e0740c2
MD5 2781cd03bde61e20723007250ce94e43
BLAKE2b-256 6351ef433ff8d9aa218b611290d6a18f19ff2375b7ec615a6ff8d99c91ecd189

See more details on using hashes here.

File details

Details for the file async_wrapper-0.4.5-py3-none-any.whl.

File metadata

  • Download URL: async_wrapper-0.4.5-py3-none-any.whl
  • Upload date:
  • Size: 13.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.10.6 Linux/5.15.0-1042-azure

File hashes

Hashes for async_wrapper-0.4.5-py3-none-any.whl
Algorithm Hash digest
SHA256 27ae4bfa6706c6eb35b839f4fe3cb9f965dd02f5b45ec874632d0bef23250442
MD5 672d9cee2f943c7ffbbf02aa96c5023d
BLAKE2b-256 3f1bebb0be274a72853511f4a319fa45b092cb71fe3e5329f2e87909d660ab9c

See more details on using hashes here.

Supported by

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