basic-pipeline (or bpipe) is a minimal & simple pipeline engine for Python
from bpipe import *
for r in echo("Hello World") | map_to(lambda x: x.upper()):
print(r)
# HELLO WORLDJust install it with the pip client:
pip install bpipeOr from source code:
git clone https://github.com/jepemo/basic-pipeline
cd basic-pipeline
python3 -m venv venv
source venv/bin/activate
pip install -e .python setup.py test