Useful syntax for digging into nested dictionaries, lists and tuples, and removes the need to check if a key exists
Project description
Digs into Dicts
Useful syntax for digging into nested dictionaries, lists and tuples, and removes the need to check if a key or index exists, or handling of KeyError or IndexError
Installation
$ pip install dict_digger
Usage
import dict_digger
h = {
'a': {
'b': 'tuna',
'c': 'fish'
},
'b': {}
}
result = dict_digger.dig(h, 'a','b')
print result # prints 'tuna'
result = dict_digger.dig(h, 'c','a')
print result # prints None
# Important!! Does not through an error, just returns None
#but if you like
result = dict_digger.dig(h, 'c','a', fail=True)
# raises a KeyError
# also support complex objects so ...
complex = {
'a': {
['tuna','fish']
},
'b': {}
}
result = dict_digger.dig(complex, 'a',0)
print result #prints tuna
Alternatives
try:
result = h['c']['a']
except KeyError:
result = None
Testing
We are using nose
$ nosetests
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dict_digger-0.2.1.tar.gz
(1.6 kB
view hashes)