Skip to main content

Console utility for pretty JSON output

Project description

Simple python utility for using in shell scripts.

Features

  • Print colorized JSON

  • Minimized and formatted output

  • Output elements by keys and indexes

  • Check JSON for correctness

  • Automatically disabling color sequences, when prints to pipeline, file or other non-tty output

Examples

  • test.json

{
  "arr": [
    123,
    "λάμβδα ラムダ lambda",
    [
      "1",
      "2"
    ]
  ],
  "test": "test"
}
  • Colorized indented

printjson test.json
  • Minimized monochrome

printjson -om test.json

Result:

{"test":"test","arr":[123,"λάμβδα ラムダ lambda",["1","2"]]}
  • Print third entry of “arr” array, using “__” as delimiter

printjson -k 'arr__2' -d '__' test.json

Result:

[
  "1",
  "2"
]

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

printjson-1.0.1.tar.gz (4.9 kB view hashes)

Uploaded Source

Built Distribution

printjson-1.0.1-py2.py3-none-any.whl (5.9 kB view hashes)

Uploaded Python 2 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