Skip to main content

Minimal library that enables flattening of nested instances of iterable containers.

Project description

Minimal library that enables flattening of nested instances of iterable containers.

PyPI version and link. Read the Docs documentation status. GitHub Actions status. Coveralls test coverage summary.

Purpose

This library provides a function for flattening iterable data structure instances that may be nested (i.e., that contain iterables). The depth up to which flattening occurs can be specified.

Installation and Usage

This library is available as a package on PyPI:

python -m pip install flats

The library can be imported in the usual ways:

import flats
from flats import flats

Examples

This library provides a function that can flatten any instance of a container type that is the root of a tree of nested instances of container types, returning as an iterable the sequence of all objects or values (that are not of a container type) encountered during an in-order traversal. Any instance of the Iterable class or the Generator class is considered to be an instance of a container type by this library:

>>> from flats import flats
>>> list(flats([[1, 2, 3], [4, 5, 6, 7]]))
[1, 2, 3, 4, 5, 6, 7]

The nested instances need not be of the same type:

>>> tuple(flats([{1}, {2}, {3}, frozenset({4}), iter([5, 6, 7])]))
(1, 2, 3, 4, 5, 6, 7)
>>> list(flats(['abc', 'xyz']))
['a', 'b', 'c', 'x', 'y', 'z']
>>> list(flats([range(3), range(3)]))
[0, 1, 2, 0, 1, 2]

It is also possible to limit the depth to which nested instances of a container type are recursively traversed during the flattening process (leaving unmodified the nesting of any instances that are found at a greater depth):

>>> list(flats([[[1, 2], 3], [4, 5, 6, 7]], depth=1))
[[1, 2], 3, 4, 5, 6, 7]
>>> list(flats([[[1, 2], 3], [4, 5, 6, 7]], depth=2))
[1, 2, 3, 4, 5, 6, 7]
>>> list(flats([[[1, [2]], 3], [4, [[[5]]], 6, 7]], depth=float('inf')))
[1, 2, 3, 4, 5, 6, 7]

Development

All installation and development dependencies are fully specified in pyproject.toml. The project.optional-dependencies object is used to specify optional requirements for various development tasks. This makes it possible to specify additional options (such as docs, lint, and so on) when performing installation using pip:

python -m pip install ".[docs,lint]"

Documentation

The documentation can be generated automatically from the source files using Sphinx:

python -m pip install ".[docs]"
cd docs
sphinx-apidoc -f -E --templatedir=_templates -o _source .. && make html

Testing and Conventions

All unit tests are executed and their coverage is measured when using pytest (see the pyproject.toml file for configuration details):

python -m pip install ".[test]"
python -m pytest

Alternatively, all unit tests are included in the module itself and can be executed using doctest:

python src/flats/flats.py -v

Style conventions are enforced using Pylint:

python -m pip install ".[lint]"
python -m pylint src/flats

Contributions

In order to contribute to the source code, open an issue or submit a pull request on the GitHub page for this library.

Versioning

Beginning with version 0.1.0, the version number format for this library and the changes to the library associated with version number increments conform with Semantic Versioning 2.0.0.

Publishing

This library can be published as a package on PyPI via the GitHub Actions workflow found in .github/workflows/build-publish-sign-release.yml that follows the recommendations found in the Python Packaging User Guide.

Ensure that the correct version number appears in pyproject.toml, and that any links in this README document to the Read the Docs documentation of this package (or its dependencies) have appropriate version numbers. Also ensure that the Read the Docs project for this library has an automation rule that activates and sets as the default all tagged versions.

To publish the package, create and push a tag for the version being published (replacing ?.?.? with the version number):

git tag ?.?.?
git push origin ?.?.?

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

flats-1.0.0.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

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

flats-1.0.0-py3-none-any.whl (6.4 kB view details)

Uploaded Python 3

File details

Details for the file flats-1.0.0.tar.gz.

File metadata

  • Download URL: flats-1.0.0.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for flats-1.0.0.tar.gz
Algorithm Hash digest
SHA256 0578f9575ef514342474ac32b001f28c0dc374b9864d8fc42f9e02f226644bff
MD5 441767349827cb2bae32fff15ed51886
BLAKE2b-256 0e01ee5603fc5eb0e06c73c592a44e2a9d250dd6c9ae6aaac08bdc670a169c2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for flats-1.0.0.tar.gz:

Publisher: build-publish-sign-release.yml on lapets/flats

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flats-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: flats-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 6.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for flats-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 63d1cf8f289ec779d52664bd52f031060e4a45b5bc0d5aa020bc54e76dc283d2
MD5 6f0e8ae930ad7e81f6138fb025fe1ff3
BLAKE2b-256 cbc18a6d3492e9cc9292f1772edff60ab6b47cd54c480c3d99451a7bc34ee45e

See more details on using hashes here.

Provenance

The following attestation bundles were made for flats-1.0.0-py3-none-any.whl:

Publisher: build-publish-sign-release.yml on lapets/flats

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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