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.4.6.tar.gz
(10.6 kB
view details)
Built Distribution
File details
Details for the file async_wrapper-0.4.6.tar.gz
.
File metadata
- Download URL: async_wrapper-0.4.6.tar.gz
- Upload date:
- Size: 10.6 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | c75db6d2ae0bc95b6e41980d6fcc6865d12eecdb389da4668fa6bfdeb3dfb281 |
|
MD5 | 65acb489119f757a3b95d307d4d7c478 |
|
BLAKE2b-256 | 8e7d2816299f5f8524a0ec682f7102af77b52aee36ea1bdb6b268d579b6bb002 |
File details
Details for the file async_wrapper-0.4.6-py3-none-any.whl
.
File metadata
- Download URL: async_wrapper-0.4.6-py3-none-any.whl
- Upload date:
- Size: 13.8 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47cca1b816b65b50243fe29ad27291335404f6524a27540b76710d6f4a3edef5 |
|
MD5 | a598780df08c3df7a88760e571bbf7c0 |
|
BLAKE2b-256 | e8470af90e1a8fdd40ef0e75eb3cd71522dd1e71546827fa2673c0c359675191 |