A Pipeline to process an Object Collection
Project description
pipeline-exec
About
pipeline-exec is an execution Pipeline to apply to an Object Collection. It's like a group of functions to run on a list of objects. The original goal behind this project was to create a framework to help create a funnel pipeline for Django models instance. We're sure there can be many more uses.
Installation
Just run:
pip install -U pipeline-exec
Usage
You need to create a pipeline and add a few funnels to it:
from pipeline_exec.pipeline import Pipe, Pipeline
# creating our funnels
class MyTestPipePlusOne(Pipe):
def run(self, l):
return [i + 1 for i in l]
class MyTestPipePlusTwo(Pipe):
def run(self, l):
return [i + 2 for i in l]
class MyTestPipeMinusOne(Pipe):
def run(self, l):
return [i - 1 for i in l]
# creating our pipeline
pipeline = Pipeline([MyTestPipePlusOne(), MyTestPipePlusTwo(), MyTestPipeMinusOne()])
# run the pipeline
pipeline.run([1, 1, 1]) # returns [3, 3, 3]
Contribute
For now, it's very straight forward. Everyone is welcome to contribute. All pull request are against the develop branch. Unit tests and the flake8 linter run at every push. Thanks in advance for your contribution :)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pipeline-exec-0.4.tar.gz
(3.1 kB
view hashes)
Built Distribution
Close
Hashes for pipeline_exec-0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 978b7b4341d753202b13f3e0e04239c0fd836bbf4c113c22c5b1579b9078212d |
|
MD5 | 098abe82f8e5fe45336be6b75716291b |
|
BLAKE2b-256 | 241666805e351f5f3f7b4ba0a9cdb37da9a743e4cf1d81df952f37cd9ba7e6f4 |