Skip to main content

Function to get value from unknown structure

Project description

la-deep-get

Function to get value that is deep inside another structure.

install

pip install la-deep-get

syntax

dget(structure, *args, default=None)

structure - Structure to go through
*args - Each field to be passed as key
default - The value to return in case it fail to access any of the keys (default is None)

example

Let's say that you have dictionary with product information and you want all active big images.

product = {
    "name": "really cool product",
    "images": {
        "active: {
            "small": [
                "https://www.smallimage.com",
                "https://www.smallimage.com",
                "https://www.smallimage.com",
            ],
            "big": [
                "https://www.bigimage.com",
                "https://www.bigimage.com",
                "https://www.bigimage.com",
            ]
        },
        "disabled": {
            "small": [
                "https://www.notcool.com",
                "https://www.notcool.com",
                "https://www.notcool.com",
            ],
            "big": [
                "https://www.notcool.com",
                "https://www.notcool.com",
                "https://www.notcool.com",
            ]
        }
    }
}

It's a simple one line function to get a value.

big_images = dget(product, "images", "active", "big", default=[])

Without the package you would have to do things like try except:

try:
    big_images = product["images"]["active"]["big"]
except:
    big_images = []

Or chain get() methods like:

big_images = product.get("images", {}).get("active", {}).get("big", [])

usage

All that you need to know is that you will navigate like normally do with dictionaries or lists (using square brackets) but it will not raise exceptions if one field doesn't exist along the way.

list_ = [
    [1,2,3],
    [4,5,6],
    [7,8,9],
    [
        [10, 11, 12],
        [13, 14, 15],
        [16, 17, 18],
    ]
]

# Same as: list_[3][1][2]
value = dget(list_, 3, 1, 2)

print(value) # 15
list_ = {
    "hello": {
        "annoing": {
            "dictionary": "here"
        }
    }
}

# Same as: list_["hello"]["annoing"]["dictionary"]
value = dget(list_, "hello", "annoing", "dictionary")

print(value) # "here"

It really doesn't care what strcuture it is.

list_ = {
    "first": {
        5: [
            "nice"
        ]
    }
}

# Same as: list_["first"][5][0]
value = dget(list_, "first", 5, 0)

print(value) # "nice"

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

la-deep-get-0.0.6.tar.gz (3.7 kB view details)

Uploaded Source

Built Distribution

la_deep_get-0.0.6-py3-none-any.whl (3.1 kB view details)

Uploaded Python 3

File details

Details for the file la-deep-get-0.0.6.tar.gz.

File metadata

  • Download URL: la-deep-get-0.0.6.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.1.3 CPython/3.10.6

File hashes

Hashes for la-deep-get-0.0.6.tar.gz
Algorithm Hash digest
SHA256 7fd0a28d6e19620effdd57e044217390debdfd346c9c23a2f2d0f597be39c20b
MD5 1b4d1a998ffc89b82e6602114bf145f6
BLAKE2b-256 64f7145b515895ae57c47cfe56eea180297a596df05f53e6ade7c11185c1b373

See more details on using hashes here.

File details

Details for the file la_deep_get-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: la_deep_get-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 3.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.1.3 CPython/3.10.6

File hashes

Hashes for la_deep_get-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 b71ef4343f624a06f51dbe9615b26cbdd940b11e54ef8984aff00a445aeef54b
MD5 084ed9618e764af20f803a686aa50bf6
BLAKE2b-256 ca829d9982d80f9644f2caf8c9184272dd4fe47693b5a5c988f6ef332b2995f4

See more details on using hashes here.

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