Iterchain: Iterator chaining for Python
Iterchain is a library intended to make manipulating iterators in Python easier and more ergonomic. The design is heavily inspired by the Rust iterator design, and a lot of the functionality comes from the standard Python itertools library.
Why would I need this?
Say we want to know the sum of all the squares of even numbers up to 100.
How can we do this?
Let's try some straightforward, procedural Python:
>>> total = 0
>>> for i in range(100):
... if i % 2 is 0:
... total += i ** 2
...
>>> total
161700
This works, but if you read this for the first time it can take a bit of effort to figure out what's happening, especially in slightly less trivial cases. So, how about we use iterators instead?
Well, let's see:
>>> sum(i**2 for i in range(100) if i % 2 is 0)
161700
That's pretty nice! Much shorter, and much easier to understand.
But there's a problem, this pattern only works for relatively simple manipulations. In those cases you could try using the python map and filter builtins (and the slightly more hidden functools.reduce). They let you construct more complex processing chains.
Let's rewrite our iterator to use those functions instead:
>>> sum(map(lambda x: x**2, filter(lambda x: x % 2 is 0, range(100))))
161700
Okay, now that is a mess...
I don't know about you, but it would take me quite a while to unravel what's happening here. The problem is that the whole expression is inside out. The filter gets applied first, but it's hidden in the middle of the expression, and the sum gets applied last but it is all the way in the front. Makes no sense...
So, how can we improve on this? iterchain of course!
(you probably saw this coming already)
So, let's see how it looks using iterchain:
>>> import iterchain
>>> (iterchain.count(stop=100)
... .filter(lambda x: x % 2 is 0)
... .map(lambda x: x**2)
... .sum())
161700
Isn't this much better? The operations are listed in the order that they're executed, are clearly separated, and you can have as few or as many operations as you want. This is why you should use iterchain!
Iterator manipulation
The heart of this library <3.
Generators
iterchain also provides handy methods that let you build new Iterator instances from scratch. These are contained in the iterchain.generators sub-module, but they're also accessible directly from the iterchain module, which is the preferred way of using them.
For example:
>>> import iterchain
>>> iterchain.count().take(4).map(lambda x: x**2).to_list()
[0, 1, 4, 9]
Release files for iterchain 0.1.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| iterchain-0.1.3.tar.gz | 4.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| iterchain-0.1.3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 21.6 kB
Release files / iterchain-0.1.3.tar.gz
| Download URL | iterchain-0.1.3.tar.gz |
|---|---|
| Size | 4.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
bb932c41565a69aa0bdc4397b1df2878ef671d2ba676a5b4e50d414d04335a72
|
|
BLAKE2b-256 checksum How to use checksums |
5e94bc53ba97a798e6586b74c1423ac26c6f7a34d96f9d10453c6d7faf3f44f7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.4
|
Release files / iterchain-0.1.3-py3-none-any.whl
| Download URL | iterchain-0.1.3-py3-none-any.whl |
|---|---|
| Size | 17.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
2ea3c53f60fac69e5b9317ea2f2167d904ef53e491a4a55b8e7be0f2a61308c7
|
|
BLAKE2b-256 checksum How to use checksums |
18e5a80242220b37642f16a3c5d5e3f3c056266098cad7fec9b266cafc6c8ea1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.4
|