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.5.3.tar.gz
(13.4 kB
view details)
Built Distribution
File details
Details for the file async_wrapper-0.5.3.tar.gz
.
File metadata
- Download URL: async_wrapper-0.5.3.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.12 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9891db14ef8b5f5bfce1bbb2f6a4d80236ebdf31ee6a66aa7aeeda2a6b399e17 |
|
MD5 | 86d6b8b115348953351d111d2582a95c |
|
BLAKE2b-256 | 189c8753541fe014811dc188e219e7974bebf23a3552ebb6d7a91910872b83c6 |
File details
Details for the file async_wrapper-0.5.3-py3-none-any.whl
.
File metadata
- Download URL: async_wrapper-0.5.3-py3-none-any.whl
- Upload date:
- Size: 16.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.12 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f57bf3389da4a369801c763c33cfa05a0538fc7ac1b5f54ce495f2a8724c765 |
|
MD5 | d10d83569d05b92cc9954418f16c6ed6 |
|
BLAKE2b-256 | f5e4c3a08204284c8ee0b7e18483f04f4de958312c974c7dc5a6c55b738cec99 |