Minimal & Simple Pipeline for Python
Project description
# basic-pipeline
basic-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
```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)
basic-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
```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)
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
bpipe-1.0.0.tar.gz
(5.3 kB
view details)
File details
Details for the file bpipe-1.0.0.tar.gz
.
File metadata
- Download URL: bpipe-1.0.0.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c0b8fe1dc8a44d67ec14cbbd3fc600b29b5140aae3b077d3ef45bfc273e4a17 |
|
MD5 | ec9e57349070d88c26cd51509e81584d |
|
BLAKE2b-256 | e390b86a80e204d339014f283e6563d3b4d5a274bf358b188062245e33882d68 |