Skip to main content

Search through JSON data key:values by key(s)

Project description

jsonparse

PyPI - Python Version GitHub tag (latest SemVer) jsonparse codecov


jsonparse is a simple JSON parsing library. Extract what's needed from key:value pairs.

Install

pip install jsonparse

Usage

from jsonparse import Parser

parser = Parser(stack_trace=False, queue_trace=False)

data = [
    {"key": 1},
    {"key": 2},
    {"my": 
        {"key": 
            {
                "chain": "A",
                "rope": 5,
                "string": 1.2,
                "cable": False
            }
        }
    },
    {"your":
    	{"key":
    		{
                "chain": "B"
            }
    	}
    }
]


parser.find_key(data, 'chain')
['A', 'B']

parser.find_key(data, 'key')
[1, 2, {'chain': 'A', 'rope': 5, 'string': 1.2, 'cable': False}, {'chain': 'B'}]


parser.find_key_chain(data, ['my', 'key', 'chain'])
['A']

parser.find_key_chain(data, ['key'])
[1, 2]

parser.find_key_chain(data, ['*', 'key', 'chain'])
['A', 'B']

parser.find_key_chain(data, ['*', 'key', '*'])
['A', 5, 1.2, False, 'B']


parser.find_key_value(data, 'cable', False)
[{'chain': 'A', 'rope': 5, 'string': 1.2, 'cable': False}]

parser.find_key_value(data, 'chain', 'B')
[{'chain': 'B'}]

API

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

  • Provide JSON data as a dictionary or a list, as well as the key as a string
  • Returns a list of values that match the corresponding key.

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

  • Provide JSON data as a dictionary or a list, as well as a list of keys as strings.

  • Returns a list of values that match the corresponding key chain.

    Wildcard '*' can be used as key(s) to match any.

find_key_value(data: dict | list, key: str, value: str | int | float | bool | None) -> list

  • Provide JSON data as a dictionary or a list, a key as a string, and a value as a string, integer, float, boolean, or None.
  • Returns a list of set(s) that contain the key:value pair.

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.9.1.tar.gz (5.2 kB view hashes)

Uploaded Source

Built Distribution

jsonparse-0.9.1-py3-none-any.whl (5.5 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