Minimal library that enables flattening of nested instances of iterable containers.
Project description
Minimal library that enables flattening of nested instances of iterable containers.
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
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0578f9575ef514342474ac32b001f28c0dc374b9864d8fc42f9e02f226644bff
|
|
| MD5 |
441767349827cb2bae32fff15ed51886
|
|
| BLAKE2b-256 |
0e01ee5603fc5eb0e06c73c592a44e2a9d250dd6c9ae6aaac08bdc670a169c2e
|
Provenance
The following attestation bundles were made for flats-1.0.0.tar.gz:
Publisher:
build-publish-sign-release.yml on lapets/flats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flats-1.0.0.tar.gz -
Subject digest:
0578f9575ef514342474ac32b001f28c0dc374b9864d8fc42f9e02f226644bff - Sigstore transparency entry: 157514293
- Sigstore integration time:
-
Permalink:
lapets/flats@1736870a715c2f69fc414d670e1255ccfce42320 -
Branch / Tag:
refs/tags/1.0.0 - Owner: https://github.com/lapets
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-publish-sign-release.yml@1736870a715c2f69fc414d670e1255ccfce42320 -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63d1cf8f289ec779d52664bd52f031060e4a45b5bc0d5aa020bc54e76dc283d2
|
|
| MD5 |
6f0e8ae930ad7e81f6138fb025fe1ff3
|
|
| BLAKE2b-256 |
cbc18a6d3492e9cc9292f1772edff60ab6b47cd54c480c3d99451a7bc34ee45e
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flats-1.0.0-py3-none-any.whl -
Subject digest:
63d1cf8f289ec779d52664bd52f031060e4a45b5bc0d5aa020bc54e76dc283d2 - Sigstore transparency entry: 157514295
- Sigstore integration time:
-
Permalink:
lapets/flats@1736870a715c2f69fc414d670e1255ccfce42320 -
Branch / Tag:
refs/tags/1.0.0 - Owner: https://github.com/lapets
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-publish-sign-release.yml@1736870a715c2f69fc414d670e1255ccfce42320 -
Trigger Event:
push
-
Statement type: