More routines for operating on iterables, beyond itertools
Project description
I love itertools; it’s one of the most beautiful, composable standard libs. “Aha! I have an iteration problem here; I’m sure there is an itertools routine that fits it perfectly” oft passes my lips. My confidence is typically well-placed, but sometimes, neither itertools nor the recipes included in its docs do quite what I need.
Here I’ve collected several routines I’ve reached for but not found. Since these are deceptively tricky to get right, I thought I’d wrap them up into a library. Enjoy! Any additions are welcome; just file a pull request.
The Routines
- chunked(iterable, n)
Break an iterable into tuples of a given length.
chunked([1, 2, 3, 4, 5, 6, 7], 3) –> [(1, 2, 3), (4, 5, 6), (7,)]
If the length of iterable is not evenly divisible by n, the last returned tuple will be shorter.
- peekable(iterable)
Wrapper for an iterator to allow 1-item lookahead
peekable(iterator).peek() returns the value that will next pop out of next().
- collate(*iterables[, key=<key function>, reverse=<bool>])
Return an iterable ordered collation of the already-sorted items from each of iterables, compared by kwarg key.
If reverse=True is passed, iterables must return their results in descending order rather than ascending.
License
More Itertools is under the MIT License. See the LICENSE file.
Version History
- 1.0
Initial release, with collate, peekable, and chunked. Could really use better docs.
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
File details
Details for the file more-itertools-1.0.tar.gz
.
File metadata
- Download URL: more-itertools-1.0.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f59af91861a4c3dfed7a276913223fa67f0d9623756e650ca357fe37c494e7eb |
|
MD5 | b21850c3cfa7efbb70fd662ab5413bdd |
|
BLAKE2b-256 | 5f0fd6c99f483702720fce886bd568bbcdb0796e0e45b6ed6d602c546d29a100 |