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.8.2.tar.gz
(15.7 kB
view details)
Built Distribution
File details
Details for the file async_wrapper-0.8.2.tar.gz
.
File metadata
- Download URL: async_wrapper-0.8.2.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.0 CPython/3.8.18 Linux/6.2.0-1019-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee626b4db0c7f1afd3a56259bfb18429b74abf35dd25aa9a28f9aef46839fc31 |
|
MD5 | f2650c47e2edc1edb5b8a1d781c21a68 |
|
BLAKE2b-256 | a06507aa0de206e61b5f450e00ca8afcaaffc4b436b71b9a0b0c66f36db91b3c |
File details
Details for the file async_wrapper-0.8.2-py3-none-any.whl
.
File metadata
- Download URL: async_wrapper-0.8.2-py3-none-any.whl
- Upload date:
- Size: 19.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.0 CPython/3.8.18 Linux/6.2.0-1019-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cf8a9d69381df04e80a3b6d428f969712cd5a9a1d1dfeffa186cfbb64fe6c55 |
|
MD5 | 274d6727552929c3c3ac32f0b85796d6 |
|
BLAKE2b-256 | 608b661acb2724ba1dd3a462ebadee048a61826e67f9dc342a9926c4859ce32c |