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 20241214: Initial release with @agen and @afunc decorators.
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 sychornous call anywhere in the call stack blocks the async event loop.
This module presently provides a pair of decorators for
asynchronous generators andfunctions 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.
The parameters are the same as for @agen, as this wraps the
function in an asynchronous generator which just yields the
function result.
Exceptions in the generator are reraised in the synchronous generator.
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.
Parameters:
maxsize: the size of theQueueused for communication, default1; this governs how greedy the generator may bepoll_delay: the async delay between polls of theQueueafter it was found to be empty twice in succession, default0.25sfast_poll_delay: the async delay between polls of theQueueafter it was found to be empty the first time after the start or after an item was obtained
Exceptions in the generator are reraised in the synchronous 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 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-20241214.tar.gz.
File metadata
- Download URL: cs_naysync-20241214.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb87c645bb67c5cdc394bc817d3db4c0910a3217e06c8a3f2a33a19ed636dab3
|
|
| MD5 |
72c014e0234dbb49bebdcbcd0ff605e7
|
|
| BLAKE2b-256 |
abc861df6180db4c14f0ebb8ccb0ea582a635d3a2a0ba03e9cc74f411d136cb0
|
File details
Details for the file cs_naysync-20241214-py3-none-any.whl.
File metadata
- Download URL: cs_naysync-20241214-py3-none-any.whl
- Upload date:
- Size: 3.9 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 |
e2cd6ddbae9384a9095267dd6eb306846eae4c645de0a515a875733e0bddc08a
|
|
| MD5 |
af1d40ad76270e123a655459c553735c
|
|
| BLAKE2b-256 |
3f94141f33a1fb19f6bc670d9f26eef92a72a2d49fc9063520746401f2e31b6a
|