Skip to main content

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 hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page