Skip to content

jivago-python/jivago-streams

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.