dict2dict


Namedict2dict JSON
Version 0.4.0 PyPI version JSON
download
home_page
SummaryOpinionated dictionary utilities for Python.
upload_time2023-12-12 08:22:21
maintainer
docs_urlNone
author
requires_python>=3.8
licenseMIT
keywords lykmapipo dictionary dict utilities utils helpers transform merge omit remove normalize
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # dict2dict

[![ci](https://github.com/lykmapipo/dict2dict/actions/workflows/ci.yaml/badge.svg)](https://github.com/lykmapipo/dict2dict/actions/workflows/ci.yaml)
[![codecov](https://codecov.io/gh/lykmapipo/dict2dict/graph/badge.svg?token=VUHBA2EZ4K)](https://codecov.io/gh/lykmapipo/dict2dict)
[![pypi](https://img.shields.io/pypi/v/dict2dict)](https://pypi.org/project/dict2dict/)
[![downloads](https://img.shields.io/pepy/dt/dict2dict)](https://www.pepy.tech/projects/dict2dict)
[![versions](https://img.shields.io/pypi/pyversions/dict2dict)](https://github.com/lykmapipo/dict2dict)
[![license](https://img.shields.io/github/license/lykmapipo/dict2dict)](https://github.com/lykmapipo/dict2dict/blob/main/LICENSE)

[![pre-commit action](https://github.com/lykmapipo/dict2dict/actions/workflows/pre-commit.yaml/badge.svg)](https://github.com/lykmapipo/dict2dict/actions/workflows/pre-commit.yaml)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
[![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![conventional commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=white)](https://conventionalcommits.org)

Opinionated dictionary utilities for Python.

## Requirements

- [Python 3.8+](https://www.python.org/)
- [pip 23.3+](https://github.com/pypa/pip)

## Installation

```sh
pip install -U dict2dict
```

## Usage

- Merge multiple dictionaries into one dictionary
```python
from dict2dict import dicts_to_dict

a = {"a": 1, "b": None, "c": None, }
b = {"b": 2, "c": None, }
c = dicts_to_dict(a, b)

c == {"a": 1, "b": 2, "c": None, }
# True
```

- Normalize and remove ``Falsey`` items from a dictionary
```python
from dict2dict import dict_to_dict
a = { "a": 1, "b": None, "c": [], }
b = dict_to_dict(a)

b == { "a": 1, }
#True
```

- Normalize ``Falsey`` items from a dictionary to ``None``
```python
from dict2dict import falsey_to_none

a = { "a": 1, "b": [], }
b = falsey_to_none(a)

b == { "a": 1, "b": None, }
# True
```

- Remove ``Falsey`` items from a dictionary
```python
from dict2dict import omit_falsey

a = { "a": 1, "b": None, }
b = omit_falsey(a)

b == { "a": 1, }
# True
```

## Test

- Clone this repository

- Install all dependencies

```sh
pip install -e .[dev]
```

- Then run test

```sh
pytest
```

## Contribute

It will be nice, if you open an issue first so that we can know what is going on, then, fork this repo and push in your ideas. Do not forget to add a bit of test(s) of what value you adding.

## Licence

The MIT License (MIT)

Copyright (c) lykmapipo & Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "dict2dict",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "lykmapipo <lallyelias87@gmail.com>",
    "keywords": "lykmapipo,dictionary,dict,utilities,utils,helpers,transform,merge,omit,remove,normalize",
    "author": "",
    "author_email": "lykmapipo <lallyelias87@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/17/3d/f00104bf1f9f5719ac68c74ca63d905215a4a9e204504d59f183f01da7c1/dict2dict-0.4.0.tar.gz",
    "platform": null,
    "description": "# dict2dict\n\n[![ci](https://github.com/lykmapipo/dict2dict/actions/workflows/ci.yaml/badge.svg)](https://github.com/lykmapipo/dict2dict/actions/workflows/ci.yaml)\n[![codecov](https://codecov.io/gh/lykmapipo/dict2dict/graph/badge.svg?token=VUHBA2EZ4K)](https://codecov.io/gh/lykmapipo/dict2dict)\n[![pypi](https://img.shields.io/pypi/v/dict2dict)](https://pypi.org/project/dict2dict/)\n[![downloads](https://img.shields.io/pepy/dt/dict2dict)](https://www.pepy.tech/projects/dict2dict)\n[![versions](https://img.shields.io/pypi/pyversions/dict2dict)](https://github.com/lykmapipo/dict2dict)\n[![license](https://img.shields.io/github/license/lykmapipo/dict2dict)](https://github.com/lykmapipo/dict2dict/blob/main/LICENSE)\n\n[![pre-commit action](https://github.com/lykmapipo/dict2dict/actions/workflows/pre-commit.yaml/badge.svg)](https://github.com/lykmapipo/dict2dict/actions/workflows/pre-commit.yaml)\n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)\n[![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n[![code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![conventional commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=white)](https://conventionalcommits.org)\n\nOpinionated dictionary utilities for Python.\n\n## Requirements\n\n- [Python 3.8+](https://www.python.org/)\n- [pip 23.3+](https://github.com/pypa/pip)\n\n## Installation\n\n```sh\npip install -U dict2dict\n```\n\n## Usage\n\n- Merge multiple dictionaries into one dictionary\n```python\nfrom dict2dict import dicts_to_dict\n\na = {\"a\": 1, \"b\": None, \"c\": None, }\nb = {\"b\": 2, \"c\": None, }\nc = dicts_to_dict(a, b)\n\nc == {\"a\": 1, \"b\": 2, \"c\": None, }\n# True\n```\n\n- Normalize and remove ``Falsey`` items from a dictionary\n```python\nfrom dict2dict import dict_to_dict\na = { \"a\": 1, \"b\": None, \"c\": [], }\nb = dict_to_dict(a)\n\nb == { \"a\": 1, }\n#True\n```\n\n- Normalize ``Falsey`` items from a dictionary to ``None``\n```python\nfrom dict2dict import falsey_to_none\n\na = { \"a\": 1, \"b\": [], }\nb = falsey_to_none(a)\n\nb == { \"a\": 1, \"b\": None, }\n# True\n```\n\n- Remove ``Falsey`` items from a dictionary\n```python\nfrom dict2dict import omit_falsey\n\na = { \"a\": 1, \"b\": None, }\nb = omit_falsey(a)\n\nb == { \"a\": 1, }\n# True\n```\n\n## Test\n\n- Clone this repository\n\n- Install all dependencies\n\n```sh\npip install -e .[dev]\n```\n\n- Then run test\n\n```sh\npytest\n```\n\n## Contribute\n\nIt will be nice, if you open an issue first so that we can know what is going on, then, fork this repo and push in your ideas. Do not forget to add a bit of test(s) of what value you adding.\n\n## Licence\n\nThe MIT License (MIT)\n\nCopyright (c) lykmapipo & Contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \u201cSoftware\u201d), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \u201cAS IS\u201d, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Opinionated dictionary utilities for Python.",
    "version": "0.4.0",
    "project_urls": {
        "Changelog": "https://github.com/lykmapipo/dict2dict/blob/main/CHANGELOG.md",
        "Documentation": "https://github.com/lykmapipo/dict2dict",
        "Homepage": "https://github.com/lykmapipo/dict2dict",
        "Issues": "https://github.com/lykmapipo/dict2dict/issues",
        "Repository": "https://github.com/lykmapipo/dict2dict"
    },
    "split_keywords": [
        "lykmapipo",
        "dictionary",
        "dict",
        "utilities",
        "utils",
        "helpers",
        "transform",
        "merge",
        "omit",
        "remove",
        "normalize"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba763c37a7fc162e7565efb7743219a4dc3b508445b1f93021967af413ec69c2",
                "md5": "cd512381cab0f1c3ae28b6ad559ade0b",
                "sha256": "5a4b7e933f7b7ed76d3538a4c0100d6ae341686c35bfdb1451c58d6cea675adc"
            },
            "downloads": -1,
            "filename": "dict2dict-0.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "cd512381cab0f1c3ae28b6ad559ade0b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 7162,
            "upload_time": "2023-12-12T08:22:19",
            "upload_time_iso_8601": "2023-12-12T08:22:19.816356Z",
            "url": "https://files.pythonhosted.org/packages/ba/76/3c37a7fc162e7565efb7743219a4dc3b508445b1f93021967af413ec69c2/dict2dict-0.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "173df00104bf1f9f5719ac68c74ca63d905215a4a9e204504d59f183f01da7c1",
                "md5": "b8c0e517be2d6b0db1ebcc2a8291e4b1",
                "sha256": "8f5424c69ce263be8878f21f3d9de0abd1c9068c6b88dce3088115b2a7d168ed"
            },
            "downloads": -1,
            "filename": "dict2dict-0.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b8c0e517be2d6b0db1ebcc2a8291e4b1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 14535,
            "upload_time": "2023-12-12T08:22:21",
            "upload_time_iso_8601": "2023-12-12T08:22:21.543172Z",
            "url": "https://files.pythonhosted.org/packages/17/3d/f00104bf1f9f5719ac68c74ca63d905215a4a9e204504d59f183f01da7c1/dict2dict-0.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-12 08:22:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lykmapipo",
    "github_project": "dict2dict",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "dict2dict"
}
        
Elapsed time: 0.15265s