Lightweight pipeline with multi-threaded operation units.
Project description
TinyPipe
TinyPipe is a lightweight library that facilitates the application of the Pipeline Pattern. A pipeline has a general form as follows:
|---| |----| |- -| |----| |---|
... -> | Q | -> | OP | -> | Q | -> | OP | -> | Q | -> ...
|---| |----| |---| |----| |---|
As data flows through the pipeline, it is first fed into the input queue (denoted as Q
above). The following operation unit (OP
) grabs it and produces a result, which is then fed into its output queue. This process continues until the data encounters a terminating OP
which has no output queue.
Building blocks are provided for pipeline construction, where each operation unit (represented by Pipe
), owns a threads and runs individually. A ParallelPipe
is also included for an operation to run with multiple threads. See the documentation for detail.
Setup
Python version: 3.6+ (other versions not tested, feel free to try it out!)
To install TinyPipe:
$ pip install tinypipe
Usage
Suppose every data has to go through the functions f1
, f2
, and f3
in sequence. The pipeline can be constructed by:
import tinypipe as tp
# 1. Create pipeline
pipeline = tp.Pipeline()
# 2. Append pipes to pipeline
f1_pipe = tp.pipe.FunctionPipe(f1)
pipeline.append(f1_pipe)
f2_pipe = tp.pipe.FunctionPipe(f2)
pipeline.append(f2_pipe)
f3_pipe = tp.pipe.FunctionPipe(f3)
pipeline.append(f3_pipe)
# One can call `pipeline.extend([f1_pipe, f2_pipe, f3_pipe])` instead
# 3. Build & start the pipeline
# Once the pipeline is started, it will keep trying to get data to process
#
# The following `pipeline.build()` call is optional. `pipeline.start()` will
# make the call if it is not called.
#
# pipeline.build()
pipeline.start()
# 5. Feed data into the pipeline
data_iterator = ...
for data in data_iterator:
pipeline.put(data)
# 6. If all the data has been passed into the pipeline,
# wait for it to finish all the work.
pipeline.join()
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 tinypipe-0.1.2.tar.gz
.
File metadata
- Download URL: tinypipe-0.1.2.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.15.0 CPython/3.6.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eecf2fa9e823d7641df010334e4a4ea6d879c2f870ac9f6242078798e88cf1d3 |
|
MD5 | 34aebefefdbea935fd6d2373de2d14a4 |
|
BLAKE2b-256 | fa73210f350ee18edb96de787de91b8cb294d64dde5872264ffa3628532c76e0 |
File details
Details for the file tinypipe-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: tinypipe-0.1.2-py3-none-any.whl
- Upload date:
- Size: 13.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.15.0 CPython/3.6.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e3d350e99ffda215866b46e6435593b212b5600049baffb99653bb2b82606ab |
|
MD5 | 9061ea0c2eba88149109d46ec70cc083 |
|
BLAKE2b-256 | 9994a50f7407cc9b6618dd18f1aa06bf07730388a49c66e24c185a6034752464 |