Utility to deep search and compare two JSON string
Project description
deepsearchdict - Deep search you dictionary
Utility package that helps you to compare two dictionary or json string and search deep in complex nested structure
Assumptions:
- Assuming python is installed on your system.
Install deepsearchdict
on your system using :
pip install deepsearchdict
Description
- Takes three arguments
- Source JSON string which is the super set
- Target JSON string which will be searched in the Source
- Type of validation. There are three types of validations supported.
- keys : Deep searches only if the keys specified in target json are present in source json
- partial : Deep searches all the keys and values are compared partially if it is contained in the source string
- all : Deep searches all the keys and values and finds for exact match of values
- Method to invoke
DeepSearchDict(source_json,target_json,validation_type)
- Returns True if Target JSON is contained within Source JSON, else False
- Example
from deepsearchdict import DeepSearchDict
import json
# read the json from file
actual_result = json.load(open('source.json'))
expected_result = json.load(open('target.json'))
# invoke DeepSearchDict with source,target and validation type
if DeepSearchDict(source, target, "partial"):
print("Expected and Actual Results Matching")
else:
print("Expected and Actual Results Not Matching")
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file nested_search-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: nested_search-0.0.2-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 861c67826ca3c1b5c91c05d4c772ea05f879d88b9cc16b177808fafffd19b505 |
|
MD5 | c58fb2a56202422ffbd5ce9e69a8f87b |
|
BLAKE2b-256 | 4fea3a1857ad91aedc707d822a05c1f208ca20b67b347e2b2a5cb62b860ec266 |