Skip to main content

A collection of utilities for working with Dictionaries in Python.

Project description

dict-tape

A collection of Python utilities for manipulating dictionaries

ko-fi

Installation

pip install dict-tape

Usage

from dict_tape import chain_get

Features

Traversal

chain_get

This is intended to help solve problems like this with deeply nested dictionaries:

some_dict.get('a', {})[0].get('b', {}).get('e', 'default')

The problem is that while .get() can help with chains of dictionaries, if you have lists intermixed in there, you can't sanely default things and have to just hope the list has items (since list indexing will throw an exception if the list is empty).

But with chain_get() you can accomplish this in a way that will sanely default:

from dict_tape import chain_get

some_dict = {'a': [{'b': {'e': 'value'}}]}
# Prints 'value'
print(chain_get(some_dict, 'a', 0, 'b', 'e', default='default'))

some_dict = {'a': []}
# Prints 'default'
print(chain_get(some_dict, 'a', 0, 'b', 'e', default='default'))

chain_get() will also do some sanity checking on your types and arguments:

  • Checks to make sure that every new level is a dict, list, or str
  • If the current data being indexed is a list or str, it will check that the arg provided is an int
  • If the current data being indexed is a dict, it will check that the arg provided is an int or str
  • If the resulting data it finds with traversal doesn't match the type provided for default, it will throw an error so you know you got something you apparently didn't expect

Options

  • default: The default value to return if the chain fails at any point.
  • check_arg_types: You can set this to False to disable checking whether arg types are valid for data. If this is disabled, when it would normally throw an error for this problem it will instead return the default value.
  • check_data_types: You can set this to False to disable checking whether the data types are valid. If this is disabled, when it would normally throw an error for this problem it will instead return the default 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

dict_tape-1.3.0.tar.gz (17.7 kB view hashes)

Uploaded Source

Built Distribution

dict_tape-1.3.0-py3-none-any.whl (15.8 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