Metadata-Version: 2.4
Name: plumbing-awesome
Version: 1.0.1
Summary: A small piping library for python
Author-email: Pau Figueras <git@pswsm.cat>
Requires-Python: >=3.13
Description-Content-Type: text/markdown

# Plumbing
Pipes!
----------------------
Install:
```sh
pip install plumbing-awesome
```

Use:
```python
from plumbing import Plumber

Plumber(10).pipe(lambda x: x * 10).pipe(str).value # "10"
```
