Skip to content

Commit

Permalink
README: shorten
Browse files Browse the repository at this point in the history
  • Loading branch information
ebonnal committed Dec 21, 2024
1 parent bfc688d commit 2030d01
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

> Stream-like manipulation of iterables
A `Stream[T]` decorates an `Iterable[T]` with a **fluent interface** enabling the chaining of lazy operations.

---

[![codecov](https://codecov.io/gh/ebonnal/streamable/graph/badge.svg?token=S62T0JQK9N)](https://codecov.io/gh/ebonnal/streamable)
Expand All @@ -20,7 +18,6 @@ A `Stream[T]` decorates an `Iterable[T]` with a **fluent interface** enabling th
|💤 *Lazy*|operations **evaluated** at iteration time|
|🔀 *Concurrent*|via **threads** or **processes** or `asyncio`|
|🛡️ *Robust*|unit-tested for **Python 3.7 to 3.14** with 100% coverage|
|🪶 *Light*|`pip install streamable` with **no additional dependencies**|

---

Expand All @@ -41,7 +38,7 @@ from streamable import Stream
```

## 3. init
Instantiate a `Stream[T]` from an `Iterable[T]`.
Create a `Stream[T]` *decorating* an `Iterable[T]`:

```python
integers: Stream[int] = Stream(range(10))
Expand Down

0 comments on commit 2030d01

Please sign in to comment.