recursively iterate through a nested (n-deep) dictionary or JSON object/file
Project description
nothoney
This is a small Python package that is able to recursively iterate through a nested (n-deep) dictionary or JSON object/file to retrieve data.
So how do I fly this thing?
Install:
pip install nothoney --user
or
python setup.py install --user
Basic usage:
>>> import nothoney
>>> test
{'x': [{'a': 'b', 'c': {'foo': 'hello'}}, {'y': 'z', 'blah': {'lala': 'funfun', 'foo': 'world'}}]}
>>> nothoney.eat(test, 'foo')
['hello', 'world']
>>> nothoney.eat(test, 'funfun', mode='value')
['lala']
File mode (test.json):
[
{
"a": "b",
"c": {
"foo": "boom goes the dynamite!"
}
},
{
"x": "y",
"z": [
{
"lalala": {
"foo": "gotem coach!",
"random": "stuff",
"here": 1337
}
}
]
}
]
>>> nothoney.eat('test.json', 'foo', as_file=True)
['boom goes the dynamite!', 'gotem coach!']
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
nothoney-0.1.2.tar.gz
(2.1 kB
view details)
File details
Details for the file nothoney-0.1.2.tar.gz
.
File metadata
- Download URL: nothoney-0.1.2.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47cd4c963b6db3e70a1361040799e0d767f3287a028e60570196ae87cd1e5b32 |
|
MD5 | 2a54be99721e2d05f2e62a3db79a1960 |
|
BLAKE2b-256 | 7599be5fb45ba5f25ac896cbc9e9871305b558fa4a2ad3276f9c1ff32eef8f21 |