1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00
Files
jc/docs/readme.md
Kelly Brazil 4758e28a36 formatting
2022-03-02 15:24:18 -08:00

2.4 KiB

jc

JC - JSON CLI output utility

This package converts the output of many standard unix command line tools and file-types to dictionaries and lists of dictionaries.

Interactive Documentation

>>> help('jc')
>>> help('jc.lib')
>>> help('jc.utils')
>>> help('jc.streaming')
>>> help('jc.parsers.universal')
>>> jc.get_help('parser_module_name')

Online Documentation

Latest

https://github.com/kellyjonbrazil/jc/tree/master/docs

Specific Version

Replace {{full_version_number}} - e.g. 1.17.7:

https://github.com/kellyjonbrazil/jc/tree/v{{full_version_number}}/docs

Specific versions can also be selected by tag in the branch dropdown menu.

Usage Example

>>> import subprocess
>>> import jc
>>>
>>> cmd_output = subprocess.check_output(['dig', 'example.com'],
                                         text=True)
>>> data = jc.parse('dig', cmd_output)
>>> data
[{'id': 64612, 'opcode': 'QUERY', 'status': 'NOERROR', ...}]

Alternatively, you can bypass the high-level API and call the parser modules directly:

>>> import subprocess
>>> import jc.parsers.dig
>>>
>>> cmd_output = subprocess.check_output(['dig', 'example.com'],
                                         text=True)
>>> data = jc.parsers.dig.parse(cmd_output)
>>> data
[{'id': 64612, 'opcode': 'QUERY', 'status': 'NOERROR', ...}]

Available Functions

Use help(jc.lib) for details.

parse

parse(
    parser_module_name: str,
    data: str | Iterable
) -> dict | list[dict] | Iterable[dict]

High-level API to easily access the parser. This API will find both built-in parsers and local plugin parsers.

parser_info

parser_info(parser_module_name: str) -> dict

Get the metadata for a particular parser.

all_parser_info

all_parser_info() -> list[dict]

Get the metadata for all parsers.

get_help

get_help(parser_module_name: str) -> None

Convenience function to display the help screen for a parser using its module name.

parser_mod_list

parser_mod_list() -> list

Get a list of all available parser module names to be used in parse(), parser_info(), and get_help().

plugin_parser_mod_list

plugin_parser_mod_list() -> list

Get a list of plugin parser module names to be used in parse(), parser_info(), and get_help(). This list is a subset of parser_mod_list().