Path to this page:
./
devel/py-aiostream,
Generator-based operators for asynchronous iteration
Branch: CURRENT,
Version: 0.6.4,
Package name: py312-aiostream-0.6.4,
Maintainer: pkgsrc-usersaiostream 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: 66.39 KB
Version history: (Expand)
- (2024-11-04) Updated to version: py312-aiostream-0.6.4
- (2024-10-09) Updated to version: py312-aiostream-0.6.3
- (2024-07-22) Updated to version: py311-aiostream-0.6.2
- (2024-05-28) Updated to version: py311-aiostream-0.6.1
- (2023-11-23) Updated to version: py311-aiostream-0.5.2
- (2022-12-06) Package added to pkgsrc.se, version py310-aiostream-0.4.5 (created)
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) | |
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 +
|