Skip to main content

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


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

nested_search-0.0.2-py3-none-any.whl (6.3 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