The tool for better organization of the workflow.
Project description
Stepizer
Chain multiple functions or generators into one pipeline.
Basic use case:
from stepizer import Step
def add_text(string: str) -> str:
return 'hello, ' + string + '!'
pipeline = Step.chain(
add_text,
str.upper,
)
pipeline.run('world')
# HELLO, WORLD!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
stepizer-0.2.2.tar.gz
(6.7 kB
view details)
File details
Details for the file stepizer-0.2.2.tar.gz.
File metadata
- Download URL: stepizer-0.2.2.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2aa8120f1035d280306db8e09ed99ade167041b0526d0c67c78a4ab57375f282
|
|
| MD5 |
7ed84b6b92ddc183d4ba860b0828ee29
|
|
| BLAKE2b-256 |
73c7395087864f29a9be6c9fe8f2a125c3e4b0859af7709236f1568cfd2eceba
|