Skip to main content

A CLI tool for converting YAML to JSON.

Project description

y2j

A command line tool for translating YAML streams to JSON.

Installation

pip install y2j

Usage

y2j accepts YAML data and writes the equivalent JSON to STDOUT. The YAML may be read from a named file, or from STDIN.

Options

  • -p, --pretty: Pretty-print the JSON output

The following examples are based on the contents of example.yml:

---
  y2j:
    - Is easy to use
    - Is neat

Reading from a file

$ y2j -p example.yml

{
  "y2j": [
    "Is easy to use",
    "Is neat"
  ]
}

Reading from STDIN

$ cat example.yml | y2j -p

{
  "y2j": [
    "Is easy to use",
    "Is neat"
  ]
}

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

y2j-0.0.1.tar.gz (2.3 kB view hashes)

Uploaded Source

Built Distribution

y2j-0.0.1-py3-none-any.whl (3.4 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