https://github.com/jepemo/basic-pipeline
Minimal & Simple Pipeline Engine for Python
https://github.com/jepemo/basic-pipeline
pipeline python python3 stream-processing utility-function
Last synced: 4 months ago
JSON representation
Minimal & Simple Pipeline Engine for Python
- Host: GitHub
- URL: https://github.com/jepemo/basic-pipeline
- Owner: jepemo
- License: gpl-3.0
- Created: 2017-11-04T16:18:07.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-24T16:27:51.000Z (almost 8 years ago)
- Last Synced: 2025-02-09T14:48:44.849Z (12 months ago)
- Topics: pipeline, python, python3, stream-processing, utility-function
- Language: Python
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# basic-pipeline
basic-pipeline (or *bpipe*) is a minimal & simple pipeline engine for Python
[](https://travis-ci.org/jepemo/basic-pipeline)
- [Getting Started](#getting-started)
- [Examples](#examples)
- [Installation](#installation)
- [Tests](#tests)
- [Tutorial](#tutorial)
- [Reference](#reference)
## Getting Started
## Examples
```python
from bpipe import *
for r in echo("Hello World") | map_to(lambda x: x.upper()):
print(r)
# HELLO WORLD
```
### Installation
Just install it with the pip client:
```bash
pip install bpipe
```
Or from source code:
```python
git clone https://github.com/jepemo/basic-pipeline
cd basic-pipeline
python3 -m venv venv
source venv/bin/activate
pip install -e .
```
### Tests
```python
python setup.py test
```
## [Tutorial](docs/tutorial.md)
## [Reference](docs/reference.md)