Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ilyasyoy/python-streamer

Simple lazy python Stream API-like wrapper.
https://github.com/ilyasyoy/python-streamer

functional-programming python stream

Last synced: about 1 month ago
JSON representation

Simple lazy python Stream API-like wrapper.

Awesome Lists containing this project

README

        

# Streamer

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

Example:

```python
from streamer import stream

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