module documentation

Undocumented

Async Function as_async_generator Wraps an iterable (sync or async) into an async generator.
Async Function collect_asyncgen Undocumented
async def as_async_generator(it: Union[Iterable, AsyncIterable]) -> AsyncGenerator: (source)

Wraps an iterable (sync or async) into an async generator.

async def collect_asyncgen(result: AsyncIterable) -> list: (source)

Undocumented