pyperstream

A small simple Stream API-like wrapper.


License
MIT
Install
pip install pyperstream==0.2

Documentation

Streamer

Simple package that provides a simple way to interact with iterable objects in more fluent way.

Example:

from streamer import stream

stream([1, 2, 3, 4]) \
    .map(lambda x: x ** 2) \
    .take()