Skip to main content

Minimal Python library for common list functions related to partitioning lists.

Project description

Minimal Python library for common list functions related to partitioning lists.

PyPI version and link.

Package Installation and Usage

The package is available on PyPI:

python -m pip install parts

The library can be imported in the usual ways:

import parts
from parts import parts

Examples

Examples of usage are provided below:

>>> from parts import parts
>>> list(parts2([1,2,3,4,5,6,7], length=2))
[[1, 2], [3, 4], [5, 6], [7]]

>>> list(parts2([1,2,3,4,5,6,7], length=4))
[[1, 2, 3, 4], [5, 6, 7]]

>>> list(parts2([1,2,3,4,5,6,7], number=1))
[[1, 2, 3, 4, 5, 6, 7]]

>>> list(parts2([1,2,3,4,5,6,7], 5))
[[1], [2], [3], [4, 5], [6, 7]]

>>> list(parts2([1,2,3,4,5,6], 2, 3))
[[1, 2, 3], [4, 5, 6]]

>>> list(parts2([1,2,3,4,5,6], number=3, length=2))
[[1, 2], [3, 4], [5, 6]]

>>> list(parts([1,2,3,4,5,6,7], 7, [1,1,1,1,1,1,1]))
[[1], [2], [3], [4], [5], [6], [7]]

>>> list(parts([1,2,3,4,5,6], length=[2,2,2]))
[[1, 2], [3, 4], [5, 6]]

>>> list(parts([1,2,3,4,5,6], length=[1,2,3]))
[[1], [2, 3], [4, 5, 6]]

>>> list(parts2([1,2,3,4,5,6,7], number=3, length=2))
Traceback (most recent call last):
  ...
ValueError: list cannot be split into 3 parts each of length 2

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

parts-0.1.0.0.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distributions

parts-0.1.0.0-py3-none-any.whl (4.0 kB view hashes)

Uploaded Python 3

parts-0.1.0-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

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