Skip to main content

Python with pipes, utils, and pipe utils

Project description

Pipe Utils

Python with pipes, utils, and pipe utils.

from pipe_utils import Pipe
from pipe_utils.iterables import *
from pipe_utils.mappings import *

words = "I just think pipes are neat"

result = (
        Pipe(words)
        | str.lower
        | str.split
        | group_by(len)
        | sorted_dict
).get()

print(result)
#  {1: ['i'], 3: ['are'], 4: ['just', 'neat'], 5: ['think', 'pipes']}

Install

pip install pipe-utils

Docs

https://pipe-utils.rtfd.io

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

pipe-utils-0.1.0.tar.gz (16.4 kB view hashes)

Uploaded Source

Built Distribution

pipe_utils-0.1.0-py3-none-any.whl (12.0 kB view hashes)

Uploaded Python 3

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