Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/ilyasyoy/python-streamer
- Owner: IlyasYOY
- License: mit
- Created: 2019-01-20T23:12:41.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-22T13:00:00.000Z (about 6 years ago)
- Last Synced: 2024-12-14T06:51:39.545Z (about 1 month ago)
- Topics: functional-programming, python, stream
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 streamstream([1, 2, 3, 4]) \
.map(lambda x: x ** 2) \
.take()
```