async wrapper
Project description
async-wrapper
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
Release history Release notifications | RSS feed
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.11.1.tar.gz
(16.0 kB
view details)
Built Distribution
File details
Details for the file async_wrapper-0.11.1.tar.gz
.
File metadata
- Download URL: async_wrapper-0.11.1.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.4.22
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae6785912d9f7416c9db2310ef51e01ba2c93928114e39d587cb8463085239a1 |
|
MD5 | 491b603dce7cfe55df310d68d93b8de5 |
|
BLAKE2b-256 | f4dbf05bc7ff17a4181ef2b81f4c6853ddb9849d6a956bf577c28aebca221449 |
File details
Details for the file async_wrapper-0.11.1-py3-none-any.whl
.
File metadata
- Download URL: async_wrapper-0.11.1-py3-none-any.whl
- Upload date:
- Size: 21.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.4.22
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c932689447e5c31ae9171583fcc0da037ec4a217bf10f0599fc412f6025066c0 |
|
MD5 | 1c4d976fe20a79abf33abba87dec689c |
|
BLAKE2b-256 | 0f6eacbabec053af881bb883392fcbd55b9903d7389ce28d9bcf28463de95b9b |