Skip to main content

Chunk by chunk iteration made easier

Project description

PyBite

Chunk by chunk iteration made easier

Installation

pip install pybite

Methods

iterate_by

Return a iterator of chunks for the iterable

Parameters

iterable: iter

Any iterable data e.g. list, tuple, dict, iter, ...

chunk_size: int

The size of each chunk

map: callable optional, defaults None

A map function for transform the data before dividing in chunks

Returns

iter

New iterable for the chunked data

Examples

>>> iterate_by([1, 2, 3, 4, 5], 2)
iter([[1, 2], [3, 4], [5])
>>> iterate_by([1, 2, 3, 4, 5], 2, map=lambda x: x * 2)
iter([[2, 4], [6, 8], [10])

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

pybite-1.0.0.tar.gz (2.0 kB view hashes)

Uploaded Source

Supported by

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