Skip to main content

Reuseable Pipes

Project description

plmbr

Type safe, reusable pipes to process streams of data.

from typing import Tuple
from plmbr.pipes import *
from plmbr.pipe import Pipe

if __name__ == '__main__':
    double_x: Pipe[Dict, Dict] = to(lambda p: {'x': p['x'] * 2, 'y': p['y']})
    point = Tuple[int, int]
    double_y: Pipe[Dict, Dict] = to(lambda p: {'x': p['x'], 'y': p['y'] * 2})

    (
        zip(range(5), range(5))
        - keep[point](lambda p: p[0] >= 2)
        - to[point, Dict](lambda p: {'x': p[0], 'y': p[1]})
        - json_dumps()
        > save('points.json')
    )

    (
        open('points.json')
        - json_loads()
        - tee(
            double_x,
            double_y,
        )
        > log()
    )

    # {'x': 4, 'y': 2}
    # {'x': 2, 'y': 4}
    # {'x': 6, 'y': 3}
    # {'x': 3, 'y': 6}
    # {'x': 8, 'y': 4}
    # {'x': 4, 'y': 8}

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

plmbr-0.1.7.tar.gz (3.6 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