Metadata-Version: 2.1
Name: stream2
Version: 0.0.3
Summary: A sequence of elements supporting sequential operations.
Author-email: Gao Feng <gf0517@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/gaofengg/stream2
Keywords: stream,sequence
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# stream2
## A sequence of elements supporting sequential operations.

Example:
```python
from stream2 import Uni

def test01(name: str):
    Uni.CreateItem().item(name) \
        .on_item().transform(lambda x: x[::-1]) \
        .subscribe(lambda x: print(x))

if __name__ == '__main__':
    test01('abc')

# >>> cba 
```
