Skip to main content

Split iterables into evenly sized chunks.

Project description

philiprehberger-list-chunk

Tests PyPI version Last updated

Split iterables into evenly sized chunks.

Installation

pip install philiprehberger-list-chunk

Usage

from philiprehberger_list_chunk import chunk, chunk_by, sliding_window, interleave, flatten

chunk([1, 2, 3, 4, 5], size=2)
# [[1, 2], [3, 4], [5]]

chunk([1, 2, 3], size=2, pad=0)
# [[1, 2], [3, 0]]

chunk_by([1, 1, 2, 2, 3], key=lambda x: x)
# [[1, 1], [2, 2], [3]]

sliding_window([1, 2, 3, 4, 5], size=3)
# [[1, 2, 3], [2, 3, 4], [3, 4, 5]]

interleave([1, 2, 3], ["a", "b", "c"])
# [1, "a", 2, "b", 3, "c"]

flatten([[1, 2], [3, 4]])
# [1, 2, 3, 4]

Partition

Split an iterable into (truthy, falsy) lists in one pass.

from philiprehberger_list_chunk import partition

evens, odds = partition(range(6), lambda n: n % 2 == 0)
# evens == [0, 2, 4], odds == [1, 3, 5]

API

Function / Class Description
chunk(items, size, pad=None) Fixed-size chunks
chunk_by(items, key) Group consecutive elements by key
sliding_window(items, size, step=1) Sliding window views
interleave(*iterables) Round-robin interleave
flatten(nested) Flatten one level of nesting
partition(items, predicate) Split into (truthy, falsy) lists in one pass

Development

pip install -e .
python -m pytest tests/ -v

Support

If you find this project useful:

Star the repo

🐛 Report issues

💡 Suggest features

❤️ Sponsor development

🌐 All Open Source Projects

💻 GitHub Profile

🔗 LinkedIn Profile

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

philiprehberger_list_chunk-0.2.0.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

philiprehberger_list_chunk-0.2.0-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file philiprehberger_list_chunk-0.2.0.tar.gz.

File metadata

File hashes

Hashes for philiprehberger_list_chunk-0.2.0.tar.gz
Algorithm Hash digest
SHA256 f1075eba726ae1e5e5d9648e620005de0e75723a84df3b1b8a3106e9fdd87a80
MD5 0ca509a4d61fedfbf73713f5f7546da3
BLAKE2b-256 1c7803717ccf158265e56b6cf85db1e4e6449ece6f89b305e6d26ec0be9fb5ed

See more details on using hashes here.

File details

Details for the file philiprehberger_list_chunk-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for philiprehberger_list_chunk-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3c7a69c4c0bc139cfdb81e5ea2e3df06aacaaaace902945feaaba71307a90ed2
MD5 fe54bb63bf31d62eb304625327636b35
BLAKE2b-256 0b53cad4df3ad6eea3dfb3179866df656ba84d9f249006e449a3b444131b0d48

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page