Search attributes easily using dot paths. Within structures of type dictionary, list and embedded substructures with simple format 'dict.users.0.name'.
Project description
Deep finder
Search attributes easily using dot paths. Within structures of type dictionary, list and embedded substructures with simple format 'dict.users.0.name'.
Getting Started
Installation
pip install deepfinder
Usage
Basic sample
from deepfinder import deep_find
user: dict = {
'name': 'ash',
'links': {
'pokehub': '@ash',
},
}
print(deep_find(user, 'links.pokehub'))
# output: '@ash'
List sample
from deepfinder import deep_find
user: dict = {
'name': 'ash',
'pokemons': [{
'name': 'pikachu',
}, {
'name': 'charmander',
}]
}
print(deep_find(user, 'pokemons.0.name'))
# output: 'pikachu'
List all result sample
from deepfinder import deep_find
user: dict = {
'name': 'ash',
'pokemons': [{
'name': 'pikachu',
}, {
'name': 'charmander',
}]
}
print(deep_find(user, 'pokemons.*.name'))
# output: ['pikachu', 'charmander']
List and not null result sample
from deepfinder import deep_find
user: dict = {
'name': 'ash',
'pokemons': [{
'name': 'pikachu',
}, {
'name': 'charmander',
'ball': 'superball',
}]
}
print(deep_find(user, 'pokemons.?.ball'))
# output: 'superball'
Use custom dict and list
from deepfinder.entity import DeepFinderDict
user: dict = DeepFinderDict({
'name': 'ash',
'pokemons': [{
'name': 'pikachu',
}, {
'name': 'charmander',
'ball': 'superball',
}]
})
print(user.deep_find('pokemons.?.ball'))
# output: 'superball'
from deepfinder.entity import DeepFinderList
users: list = DeepFinderList([{
'name': 'ash',
'pokemons': [{
'name': 'pikachu',
}, {
'name': 'charmander',
'ball': 'superball',
}]
}])
print(users.deep_find('0.pokemons.?.ball'))
# output: 'superball'
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
deepfinder-0.2.1.tar.gz
(3.5 kB
view hashes)
Built Distribution
Close
Hashes for deepfinder-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e684bb3d1a045f4f8ecc0dd406bfe2178df36576a8f302a0376032ca8c77ad97 |
|
MD5 | f9954868c8a87389684244226adefe0e |
|
BLAKE2b-256 | 327eafae4eebc5837299da14553ac4ff5fd25407f06ab36bb5ff4b7f5b144901 |