from six import iteritems from collections import defaultdict def nested_lookup(key, document, wild=False, with_keys=False): """Lookup a key in a nested document, return a list of values""" if with_keys: d = defaultdict(list) for k, v in _nested_lookup(key, document, wild=wild, with_keys=with_keys): d[k].append(v) return d return list(_nested_lookup(key, document, wild=wild, with_keys=with_keys)) def _nested_lookup(key, document, wild=False, with_keys=False): """Lookup a key in a nested document, yield a value""" if isinstance(document, list): for d in document: for result in _nested_lookup(key, d, wild=wild, with_keys=with_keys): yield result if isinstance(document, dict): for k, v in iteritems(document): if key == k or (wild and key.lower() in k.lower()): if with_keys: yield k, v else: yield v elif isinstance(v, dict): for result in _nested_lookup(key, v, wild=wild, with_keys=with_keys): yield result elif isinstance(v, list): for d in v: for result in _nested_lookup( key, d, wild=wild, with_keys=with_keys ): yield result def get_all_keys(dictionary): """ Method to get all keys from a nested dictionary as a List Args: dictionary: Nested dictionary Returns: List of keys in the dictionary """ result_list = [] def recrusion(dictionary): for key, value in iteritems(dictionary): if isinstance(value, dict): result_list.append(key) recrusion(dictionary=value) elif isinstance(value, list): result_list.append(key) for list_items in value: recrusion(dictionary=list_items) else: result_list.append(key) recrusion(dictionary=dictionary) return result_list def get_occurance_of_key(dictionary, key): """ Method to get occurance of a key in a nested dictionary Args: dictionary: Nested dictionary key: Key to search for the occurances Return: Number of occurance (Integer) """ return _get_occurrence(dictionary=dictionary, item='key', keyword=key) def get_occurance_of_value(dictionary, value): """ Method to get occurance of a value in a nested dictionary Args: dictionary: Nested dictionary value: Value to search for the occurances Return: Number of occurance (Integer) """ return _get_occurrence(dictionary=dictionary, item='value', keyword=value) def _get_occurrence(dictionary, item, keyword): """ Method to get occurance of a key or value in a nested dictionary Args: dictionary: Nested dictionary item: Mostly (key or value) keyword: key word to find occurance Return: Number of occurance of the given keyword in the dict """ occurance = [0] def recrusion(dictionary): if item == 'key': occurance[0] += 1 if dictionary.get(keyword) else 0 elif keyword in dictionary.values(): occurance[0] += dictionary.values().count(keyword) for key, value in iteritems(dictionary): if isinstance(value, dict): recrusion(dictionary=value) elif isinstance(value, list): for list_items in value: recrusion(dictionary=list_items) recrusion(dictionary=dictionary) return occurance[0]