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
Built Distribution
File details
Details for the file pipeline-exec-0.4.tar.gz
.
File metadata
- Download URL: pipeline-exec-0.4.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b05e3c7775306bd13edf3f88b997daca5a9a3c9c43cc2615ba29d3e5807d8df2 |
|
MD5 | c8ed8f039572161b2852fb4c91354865 |
|
BLAKE2b-256 | 75d0944cd375257250e8d6b734634bbf44a68987911412b0ec2bb2a0cabc9f59 |
File details
Details for the file pipeline_exec-0.4-py3-none-any.whl
.
File metadata
- Download URL: pipeline_exec-0.4-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 978b7b4341d753202b13f3e0e04239c0fd836bbf4c113c22c5b1579b9078212d |
|
MD5 | 098abe82f8e5fe45336be6b75716291b |
|
BLAKE2b-256 | 241666805e351f5f3f7b4ba0a9cdb37da9a743e4cf1d81df952f37cd9ba7e6f4 |