Skip to main content

Removes values from nested dicts and lists

Project description

deep-filter

A simple package that filters out values from dicts/lists, including all dicts/lists nested within it.

Usage

from deep_filter import deep_filter
x = {
    'nope': 69,
    'yep': [
        69,
        {'maybe': None},
        99
    ]
}
def filter_func:
    return value != 69
result = deep_filter(x, filter_func)
print(result)
# {'yep': [{}, 99]}

deep_filter(dict_or_list, filter_func=default_filter_func)

  • dict_or_list: A dictionary or list
  • filter_func: An optional callback function. It will take a value as an argument, and return True if the value will be kept and False if not. If omitted, None values will be filtered out.

Returns your dict or list, filtered.

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

deep-filter-1.0.0.tar.gz (1.6 kB view hashes)

Uploaded Source

Built Distribution

deep_filter-1.0.0-py2.py3-none-any.whl (2.1 kB view hashes)

Uploaded Python 2 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