jivago-streams

Chainable functional-style operations for Python3.


License
MIT
Install
pip install jivago-streams==0.5.5

Documentation

Jivago-Streams

Build Status codecov

Jivago-Streams brings the ability to chain functional-style operations on collections. This package provides a single class (Stream), which is extracted from the Jivago web framework. Note that jivago-streams can be used independently from the Jivago web framework.

from jivago_streams import Stream

# Result : [4, 16, 36]
square_of_even_numbers = Stream([1, 2, 3, 4, 5, 6]) \
    .filter(lambda x: x % 2 == 0) \
    .map(lambda x: x ** 2) \
    .toList()

Installation

pip install jivago-streams

Documentation

The documentation is available at https://docs.jivago.io.