Metadata-Version: 2.3
Name: enpipe
Version: 0.0.2b1
Summary: Chaining functions execution made easy
Author: Alessandro Finamore
Author-email: Alessandro Finamore <mail@afinamore.io>
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# enpipe: Chaining functions execution made easy

```
from enpipe import make_pipeline
from math import sqrt

def operation(n1: float, n2: float) -> float:
    return n1 + n2

pipeline = make_pipeline(
    operation,
    lambda n: n**0.5
)

assert pipeline(1, 2) == sqrt(3)
```
