An attempt at comingling async-code and nonasync-code-in-a-thread in an argonomic way.
Project description
An attempt at comingling async-code and nonasync-code-in-a-thread in an argonomic way.
Latest release 20241215:
- @afunc: now uses asyncio.to_thread() instead of wrapping @agen, drop the decorator parameters since no queue or polling are now used.
- @agen: nonpolling implementation - now uses asyncio.to_thread() for the next(genfunc) step, drop the decorator parameters since no queue or polling are now used.
One of the difficulties in adapting non-async code for use in an async world is that anything asynchronous needs to be turtles all the way down: a single blocking synchronous call anywhere in the call stack blocks the async event loop.
This module presently provides a pair of decorators for
asynchronous generators and functions which dispatches them in
a Thread and presents an async wrapper.
afunc(*da, **dkw)
A decorator for a synchronous function which turns it into an asynchronous function.
Example:
@afunc
def func(count):
time.sleep(count)
return count
slept = await func(5)
agen(*da, **dkw)
A decorator for a synchronous generator which turns it into an asynchronous generator. Exceptions in the synchronous generator are reraised in the asynchronous generator.
Example:
@agen
def gen(count):
for i in range(count):
yield i
time.sleep(1.0)
async for item in gen(5):
print(item)
Release Log
Release 20241215:
- @afunc: now uses asyncio.to_thread() instead of wrapping @agen, drop the decorator parameters since no queue or polling are now used.
- @agen: nonpolling implementation - now uses asyncio.to_thread() for the next(genfunc) step, drop the decorator parameters since no queue or polling are now used.
Release 20241214.1: Doc update.
Release 20241214: Initial release with @agen and @afunc decorators.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cs_naysync-20241215.tar.gz.
File metadata
- Download URL: cs_naysync-20241215.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
504eaa65014af23d048e6657c5e0c59478ea71ae4f90a09de39e1ee4029ff7f8
|
|
| MD5 |
ef7fbb1d60998a2b2d608a49665dbaf6
|
|
| BLAKE2b-256 |
1e4ddcfa64f62b6dbd5911fa9772a260966e20bdb4f97da3119c4cd5515ba1e2
|
File details
Details for the file cs_naysync-20241215-py3-none-any.whl.
File metadata
- Download URL: cs_naysync-20241215-py3-none-any.whl
- Upload date:
- Size: 3.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58d6fe83134445ad9a91cf26d52b8cbe1fb374b2b586a4e8783d5d09b2dfa740
|
|
| MD5 |
690a0fa71e5fe54819f8db8a1442385c
|
|
| BLAKE2b-256 |
cd38205d5ef71bb9354a2ef9271f484aebaf2121c68e1fee79053b9ed36b7fd1
|