Skip to main content

Shell config file parser (json, yaml)

Project description

niet

Get data from yaml file directly in your shell

Install

$ pip install niet

Usage

With YAML file

Consider the yaml file with the following content:

# /path/to/your/file.yaml
project:
    meta:
        name: my-project
    foo: bar
    list-items:
        - item1
        - item2
        - item3

You can retrieve data from this file by using niet like this:

$ niet /path/to/your/file.yaml "project.meta.name"
my-project
$ niet /path/to/your/file.yaml "project.foo"
bar
$ niet /path/to/your/file.yaml "project.list-items"
item1 item2 item3
$ # assign return value to shell variable
$ NAME=$(niet /path/to/your/file.yaml "project.meta.name")
$ echo $NAME
my-project

With JSON file

Consider the json file with the following content:

{
    "project": {
        "meta": {
            "name": "my-project"
        }
    },
    "foo": "bar",
    "list-items": [
        "item1",
        "item2",
        "item3"
    ]
}

You can retrieve data from this file by using niet like this:

$ niet /path/to/your/file.json "project.meta.name"
my-project
$ niet /path/to/your/file.json "project.foo"
bar
$ niet /path/to/your/file.json "project.list-items"
item1 item2 item3
$ # assign return value to shell variable
$ NAME=$(niet /path/to/your/file.json "project.meta.name")
$ echo $NAME
my-project

Deal with errors

When your JSON file content are not valid niet display an error and exit with return code 1

You can easily protect your script like this:

PROJECT_NAME=$(niet your-file.yaml project.meta.name)
if [ "$?" = "1" ]; then
    echo "Error occur ${PROJECT_NAME}"
else
    echo "Project name: ${PROJECT_NAME}"
fi

Tips

You can pass your search with or without quotes like this:

$ niet your-file.yaml project.meta.name
$ niet your-file.yaml "project.meta.name"

Tests

You can try niet by using the samples provided with the project sources code.

Sample example:

# tests/samples/sample.yaml
project:
    meta:
        name: project-sample
        tags:
          - example
          - sample
          - for
          - testing
          - purpose

Retrieve the project name:

$ niet tests/samples/sample.yaml project.meta.name
project-sample

Deal with list of items

$ for el in $(niet tests/samples/sample.yaml project.meta.tags); do echo ${el}; done
example
sample
for
testing
purpose

CHANGES

0.2.1

  • fix bad behavior on element not found
  • fix documentation examples
  • remove tick from list results
  • using readme at markdown format on pypi

0.1.0

  • First commit

Hervé Beraud herveberaud.pro@gmail.com

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

niet-0.2.2.tar.gz (3.6 kB view details)

Uploaded Source

Built Distribution

niet-0.2.2-py2.py3-none-any.whl (3.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file niet-0.2.2.tar.gz.

File metadata

  • Download URL: niet-0.2.2.tar.gz
  • Upload date:
  • Size: 3.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for niet-0.2.2.tar.gz
Algorithm Hash digest
SHA256 344d4fd21fad87a4def835e9c959bcf0847a08c1139af5aae1b970df934e1f20
MD5 fb7aadab9d829c7c9cddca88abedc0e7
BLAKE2b-256 adc040dd621181c738a1f9913b5d1fb7269dff5b872dd389ba398cabdcf91bd2

See more details on using hashes here.

File details

Details for the file niet-0.2.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for niet-0.2.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7220e023c4e66bec67c7be87d0cbfdcaf9ea75d5652204c1ec12b00e1e6a8ecc
MD5 a5827a4b112ca83e35c716c4f3e0535c
BLAKE2b-256 187822c1500911e5510193e3ac1dc50c7161aba135036275d60aeed41160ac51

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