async wrapper
Project description
async-wrapper
how to install
$ pip install async_wrapper
# or
$ pip install "async_wrapper[all]"
# or
$ pip install "async_wrapper[loky]"
how to use
from __future__ import annotations
import time
import anyio
from async_wrapper import TaskGroupWrapper, async_to_sync
@async_to_sync("thread")
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.3.2.tar.gz
(7.6 kB
view details)
Built Distribution
File details
Details for the file async_wrapper-0.3.2.tar.gz
.
File metadata
- Download URL: async_wrapper-0.3.2.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.6 Linux/5.15.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23dc363e430e9b4868db7fc204c21f60d9ef602b2820e4efdba90b32c192142f |
|
MD5 | 6e78585f5dd2f317dd559794522929a7 |
|
BLAKE2b-256 | db63e9989818bf247bf8599d3bce3e51a86eca4683a554997070577f4d5cec4a |
File details
Details for the file async_wrapper-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: async_wrapper-0.3.2-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.6 Linux/5.15.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82f54968aec0052f729107a77573c9417655a1b57f11ef82727c34a4e01c5feb |
|
MD5 | 7d90bb84940b83c79d873843e80b2acd |
|
BLAKE2b-256 | 3672055124a5e2cca3db56c2e4806b3ad741a67d44ce5d9f7d392498fec6c2bd |