./devel/py-aiostream, Generator-based operators for asynchronous iteration

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 0.5.2, Package name: py311-aiostream-0.5.2, Maintainer: pkgsrc-users

aiostream provides a collection of stream operators that can be
combined to create asynchronous pipelines of operations.

It can be seen as an asynchronous version of itertools, although
some aspects are slightly different. Essentially, all the provided
operators return a unified interface called a stream. A stream is
an enhanced asynchronous iterable providing the following features:

* Operator pipe-lining - using pipe symbol |
* Repeatability - every iteration creates a different iterator
* Safe iteration context - using async with and the stream method
* Simplified execution - get the last element from a stream using await
* Slicing and indexing - using square brackets []
* Concatenation - using addition symbol +


Master sites:

Filesize: 34.511 KB

Version history: (Expand)


CVS history: (Expand)


   2023-11-23 17:16:36 by Jonathan Perkin | Files touched by this commit (1)
Log message:
py-aiostream: Unbreak impossible DEPENDS.
   2023-11-23 10:01:33 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-aiostream: updated to 0.5.2

v0.5.2
Properly expose pipe methods in aiostream.pipe

v0.5.1
Expose pipable_operator at package level
Modernize examples

v0.5.0
Drop python 3.7 support
Add type annotations
Add task_limit argument to action operator
   2022-12-06 20:48:40 by Thomas Klausner | Files touched by this commit (4)
Log message:
devel/py-aiostream: import py310-aiostream-0.4.5

aiostream provides a collection of stream operators that can be
combined to create asynchronous pipelines of operations.

It can be seen as an asynchronous version of itertools, although
some aspects are slightly different. Essentially, all the provided
operators return a unified interface called a stream. A stream is
an enhanced asynchronous iterable providing the following features:

* Operator pipe-lining - using pipe symbol |
* Repeatability - every iteration creates a different iterator
* Safe iteration context - using async with and the stream method
* Simplified execution - get the last element from a stream using await
* Slicing and indexing - using square brackets []
* Concatenation - using addition symbol +