bpipe 1.0.0

Last updated:

0 purchases

bpipe 1.0.0 Image
bpipe 1.0.0 Images
Add to Cart

Description:

bpipe 1.0.0

# basic-pipelinebasic-pipeline (or *bpipe*) is a minimal & simple pipeline engine for Python- [Getting Started](#getting-started) - [Examples](#examples) - [Installation](#installation) - [Tests](#tests)- [Tutorial](#tutorial)- [Reference](#reference)## Getting Started## Examples```pythonfrom bpipe import *for r in echo("Hello World") | map_to(lambda x: x.upper()): print(r)# HELLO WORLD```### InstallationJust install it with the pip client:```bashpip install bpipe```Or from source code:```pythongit clone https://github.com/jepemo/basic-pipelinecd basic-pipelinepython3 -m venv venvsource venv/bin/activatepip install -e .```### Tests```pythonpython setup.py test```## [Tutorial](docs/tutorial.md)## [Reference](docs/reference.md)

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.