Skip to main content

Simple library to make your dictionary flatten

Project description

MakeFlatt

Simple library to make your dictionary flatten in Python

PyPI version PyPI - Python Version Unit Tests Code Style PyPI - License

Installation

pip install makeflatt

Usage

Quick start:

>>> from makeflatt import FlattMaker
>>> mf = FlattMaker()
>>> mf.apply({"a": {"b": {"c": "test"}}})
{'a.b.c': 'test'}

Make nested structured flatten without expanding lists:

>>> mf.apply({"a": {"b": ["b1", "b2", "b3"]}})
{'a.b': ['b1', 'b2', 'b3']}

Or use deep_apply to also expand lists:

>>> mf.deep_apply({"a": {"b": ["b1", "b2", "b3"]}})
{'a.b.0': 'b1', 'a.b.1': 'b2', 'a.b.2': 'b3'}

You can also change the separator and define your own:

>>> mf = FlattMaker(sep=":")
>>> mf.apply({"a": {"b": ["b1", "b2", "b3"]}})
{'a:b': ['b1', 'b2', 'b3']}

License

Makeflatt is released under the MIT Licence. See the bundled LICENSE file for details.

Development

Check the CONTRIBUTING file.

Versioning

This package attempts to use semantic versioning. API changes are indicated by the major version, non-breaking improvements by the minor, and bug fixes in the revision.

It is recommended that you pin your targets to greater or equal to the current version and less than the next major version.

Maintainer

Created and maitained by Jonathan Schweder (@jaswdr)

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

makeflatt-1.0.3.tar.gz (3.4 kB view details)

Uploaded Source

Built Distribution

makeflatt-1.0.3-py3-none-any.whl (3.5 kB view details)

Uploaded Python 3

File details

Details for the file makeflatt-1.0.3.tar.gz.

File metadata

  • Download URL: makeflatt-1.0.3.tar.gz
  • Upload date:
  • Size: 3.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.10 CPython/3.8.15 Darwin/21.6.0

File hashes

Hashes for makeflatt-1.0.3.tar.gz
Algorithm Hash digest
SHA256 a80637cb4d647ecaffc81984979c389734f98b66219bce848848eebe3f2186c1
MD5 afbcf3aba74a8194fe7094ead6dfe1d9
BLAKE2b-256 dc818afb4d629856c38ec203b37ef6d8220d2babf5eaa1583258ed6a03068c4c

See more details on using hashes here.

File details

Details for the file makeflatt-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: makeflatt-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 3.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.10 CPython/3.8.15 Darwin/21.6.0

File hashes

Hashes for makeflatt-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 f3b70e8d7c274c0e772742b79353b95dc394000dd031025a0d0ef464750a2e66
MD5 b5a8dd85cba5159a3a850b9ecdd45dea
BLAKE2b-256 cfb741763b6e455c227a728921e6621bfb970e7cbd9bf797a8858051ee4726d0

See more details on using hashes here.

Supported by

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