1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00
Files
jc/docs/parsers/du.md
2022-03-10 15:18:27 -08:00

2.2 KiB

Home

jc.parsers.du

jc - JSON Convert du command output parser

Usage (cli):

$ du | jc --du

or

$ jc du

Usage (module):

import jc
result = jc.parse('du', du_command_output)

Schema:

[
  {
    "size":     integer,
    "name":     string
  }
]

Examples:

$ du /usr | jc --du -p
[
  {
    "size": 104608,
    "name": "/usr/bin"
  },
  {
    "size": 56,
    "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/..."
  },
  {
    "size": 0,
    "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/..."
  },
  {
    "size": 0,
    "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/..."
  },
  {
    "size": 0,
    "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/..."
  },
  {
    "size": 1008,
    "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/..."
  },
  ...
]

$ du /usr | jc --du -p -r
[
  {
    "size": "104608",
    "name": "/usr/bin"
  },
  {
    "size": "56",
    "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/..."
  },
  {
    "size": "0",
    "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/..."
  },
  {
    "size": "0",
    "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/..."
  },
  {
    "size": "0",
    "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/..."
  },
  {
    "size": "1008",
    "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/..."
  },
  ...
]

parse

def parse(data, raw=False, quiet=False)

Main text parsing function

Parameters:

data:        (string)  text data to parse
raw:         (boolean) unprocessed output if True
quiet:       (boolean) suppress warning messages if True

Returns:

List of Dictionaries. Raw or processed structured data.

Parser Information

Compatibility: linux, darwin, aix, freebsd

Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com)