Skip to main content

A function to map the keys in a dictionary

Project description

Map Dictionary Keys

Installation

pip install map-dictionary-keys

Usage

from map_dictionary_keys import map_dictionary_keys

d = {
    'some_key_to_map': 'value'
}


def some_mapping_function(key_name):
    return key_name.upper()

mapped_dictionary = map_dictionary_keys(d, some_mapping_function)

In the above example, mapped_dictionary will be mapped according to the function some_mapping_function as follows:

mapped_dictionary = {
    'SOME_KEY_TO_MAP': 'value'
}

This function will work for all levels of nested dictionaries. In the following example, both 'sub_dictionary' and 'key_name' will be converted as per the mapping function passed to map_dictionary_keys.

dictionary = {
    'sub_dictionary': {
        'key_name': 'value'
    }
}

It will also work for nested lists of dictionaries. For example, in the following example, 'key_name' will be mapped according to the mapping function provided to map_dictionary_keys.

dictionary = {
    'list_of_dictionaries': [
        {
            'key_name': 'value'
        }
    ]
}

This function does not currently work for lists nested beyond the first level. For example, in the following example, 'key_name' will not be mapped according to the mapping function provided to map_dictionary_keys.

dictionary = {
    'my_list': [
        [
            {
                'key_name': 'value'
            }
        ]
    ]
}

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

map-dictionary-keys-0.0.1.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

map_dictionary_keys-0.0.1-py3-none-any.whl (4.0 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