Metadata-Version: 2.3
Name: oa-utils
Version: 0.1.10
Summary: Statically typed Python utilities.
License: MIT
Keywords: utilities,functional programming,fluent interface,collection pipeline
Author: Oleg Alexander
Requires-Python: >=3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: more-itertools (>=10.7.0,<11.0.0)
Project-URL: Homepage, https://github.com/OlegAlexander/oa-utils
Description-Content-Type: text/markdown

# oa-utils

Statically typed Python utilities. 

## Pipeline

Fluent wrapper around a tuple.

```python
from oa_utils.pipeline import Pipeline

result = (Pipeline(range(10))
            .filter(lambda x: x % 2 == 0)
            .map(lambda x: x * x)
            .sum()) # 120
```

