Skip to main content

JSON Processor - Convert one JSON to another

Project description

https://travis-ci.org/huntflow/json-processor.svg?branch=master https://codecov.io/gh/huntflow/json-processor/branch/master/graph/badge.svg

Simply convert one JSON to another.

  • Easy to use. Create a simple JSON conversion schema and pass it to processor

  • Rich. It uses jsonpointer so you can create complex processors

Example

from json_processor import json_process

schema = {
    "type": "object",
    "value": {
        "simple_key": "Just a string",
        "values": {
            "type": "array",
            "from": {
                "type": "jsonpointer",
                "value": "/data/items"
            },
            "value": {
                "type": "object",
                "value": {
                    "id": {
                        "type": "jsonpointer",
                        "value": "/$value/foreign",
                        "cast": "integer"
                    },
                    "name": {
                        "type": "jsonpointer",
                        "value": "/$value/name"
                    }
                }
            }
        }
    }
}

data = {
    "data": {
        "items": [
            {
                "foreign": "100",
                "name": "Item 1"
            },
            {
                "foreign": "150",
                "name": "Item 2"
            }
        ]
    }
}

print(json_process(schema, data))

# Outputs:
# {'simple_key': 'Just a string', 'values': [{'id': 100, 'name': 'Item 1'}, {'id': 150, 'name': 'Item 2'}]}

Installation

From PyPi

pip install json_processor

Command line tool

After installation you can use json_process utility:

json_process <schema_file> <json_file>

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

json_processor-0.0.10.tar.gz (7.0 kB view details)

Uploaded Source

File details

Details for the file json_processor-0.0.10.tar.gz.

File metadata

  • Download URL: json_processor-0.0.10.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.20.1 setuptools/36.2.7 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.2

File hashes

Hashes for json_processor-0.0.10.tar.gz
Algorithm Hash digest
SHA256 d28ff52e2c2b09fcf9a2682d84145da982232355c92826059e127b471b84bec6
MD5 67b9cc2d2bbffd9f875486288d90f658
BLAKE2b-256 6c2234184661ccd45466478c8da65892dc210177695aeed01165fee86725cae7

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