More routines for operating on iterables, beyond itertools
Project description
Python’s itertools library is a gem - you can compose elegant solutions for a variety of problems with the functions it provides. In more-itertools we collect additional building blocks, recipes, and routines for working with Python iterables.
Getting started
To get started, install the library with pip:
pip install more-itertools
The recipes from the itertools docs are included in the top-level package:
>>> from more_itertools import flatten
>>> iterable = [(0, 1), (2, 3)]
>>> list(flatten(iterable))
[0, 1, 2, 3]
Several new recipes are available as well:
>>> from more_itertools import chunked
>>> iterable = [0, 1, 2, 3, 4, 5, 6, 7, 8]
>>> list(chunked(iterable, 3))
[[0, 1, 2], [3, 4, 5], [6, 7, 8]]
>>> from more_itertools import spy
>>> iterable = (x * x for x in range(1, 6))
>>> head, iterable = spy(iterable, n=3)
>>> list(head)
[1, 4, 9]
>>> list(iterable)
[1, 4, 9, 16, 25]
For the full listing of functions, see the API documentation.
Links elsewhere
Blog posts about more-itertools:
Development
more-itertools is maintained by @erikrose and @bbayles, with help from many others. If you have a problem or suggestion, please file a bug or pull request in this repository. Thanks for contributing!
Version History
The version history can be found in documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file more-itertools-8.13.0.tar.gz
.
File metadata
- Download URL: more-itertools-8.13.0.tar.gz
- Upload date:
- Size: 101.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a42901a0a5b169d925f6f217cd5a190e32ef54360905b9c39ee7db5313bfec0f |
|
MD5 | 9ad999d84c5be15938c8fcce0a7a5213 |
|
BLAKE2b-256 | b4232987c2792c18a211dfe913e2f60e55cde0af6dfc41217e4da74ac7cd68f4 |
File details
Details for the file more_itertools-8.13.0-py3-none-any.whl
.
File metadata
- Download URL: more_itertools-8.13.0-py3-none-any.whl
- Upload date:
- Size: 51.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5122bffc5f104d37c1626b8615b511f3427aa5389b94d61e5ef8236bfbc3ddb |
|
MD5 | 46d8b92e5ee89b7f22a15ddf6b1042fe |
|
BLAKE2b-256 | bd3fc4b3dbd315e248f84c388bd4a72b131a29f123ecacc37ffb2b3834546e42 |