Skip to main content

Search through JSON data key:vales by key

Project description

jsonparse

A simple JSON key parsing library. It's use-case is to extract the values from key:value pairs in JSON data.

Install

pip install jsonparse

Usage

from jsonparse import Parser

parse = Parser(stack_trace=False, queue_trace=False)
data = [
    {"key": 1},
    {"key": 2},
    {"my": 
        {"key": 
            {"chain":"A"}
        }
    }
]


print(parse.key(data, 'key'))
[{'chain': 'A'}, 2, 1]

print(parse.key_chain(data, ['my', 'key', 'chain']))
['A']

print(parse.key_chain(data, ['key']))
[1, 2]

API

key(data: dict | list, key: str): -> list

Returns a list of values that have the corresponding key.

key_chain(data: dict | list, keys: list): -> list

Returns a list of values that have the corresponding key chain.

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

jsonparse-0.5.0.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

jsonparse-0.5.0-py3-none-any.whl (4.6 kB view hashes)

Uploaded Python 3

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