2021-04-09 15:10:38 -07:00
|
|
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
2020-07-30 16:20:24 -07:00
|
|
|
|
|
|
|
# jc.parsers.kv
|
2020-08-05 16:51:58 -07:00
|
|
|
jc - JSON CLI output utility `Key/Value` file parser
|
|
|
|
|
2022-01-19 17:30:14 -08:00
|
|
|
Supports files containing simple key/value pairs. Delimiter can be `=` or
|
|
|
|
`:`. Missing values are supported. Comment prefix can be `#` or `;`.
|
|
|
|
Comments must be on their own line.
|
2020-08-05 16:51:58 -07:00
|
|
|
|
2022-01-19 17:30:14 -08:00
|
|
|
Note: Values starting and ending with quotation marks will have the marks
|
|
|
|
removed. If you would like to keep the quotation marks, use the `-r`
|
|
|
|
command-line argument or the `raw=True` argument in `parse()`.
|
2020-08-05 16:51:58 -07:00
|
|
|
|
2020-08-05 13:32:59 -07:00
|
|
|
Usage (cli):
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2020-08-05 16:51:58 -07:00
|
|
|
$ cat foo.txt | jc --kv
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2020-08-05 13:32:59 -07:00
|
|
|
Usage (module):
|
|
|
|
|
2022-01-18 15:38:03 -08:00
|
|
|
import jc
|
|
|
|
result = jc.parse('kv', kv_file_output)
|
|
|
|
|
|
|
|
or
|
|
|
|
|
2020-08-05 13:32:59 -07:00
|
|
|
import jc.parsers.kv
|
|
|
|
result = jc.parsers.kv.parse(kv_file_output)
|
|
|
|
|
2021-04-09 15:10:38 -07:00
|
|
|
Schema:
|
|
|
|
|
2022-01-19 17:30:14 -08:00
|
|
|
key/value document converted to a dictionary - see the
|
|
|
|
configparser standard library documentation for more details.
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2021-04-09 15:10:38 -07:00
|
|
|
{
|
|
|
|
"key1": string,
|
|
|
|
"key2": string
|
|
|
|
}
|
2020-07-30 16:20:24 -07:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ cat keyvalue.txt
|
|
|
|
# this file contains key/value pairs
|
|
|
|
name = John Doe
|
|
|
|
address=555 California Drive
|
|
|
|
age: 34
|
|
|
|
; comments can include # or ;
|
|
|
|
# delimiter can be = or :
|
|
|
|
# quoted values have quotation marks stripped by default
|
|
|
|
# but can be preserved with the -r argument
|
|
|
|
occupation:"Engineer"
|
|
|
|
|
2021-07-22 12:20:31 -07:00
|
|
|
$ cat keyvalue.txt | jc --kv -p
|
2020-07-30 16:20:24 -07:00
|
|
|
{
|
|
|
|
"name": "John Doe",
|
|
|
|
"address": "555 California Drive",
|
|
|
|
"age": "34",
|
|
|
|
"occupation": "Engineer"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
## info
|
|
|
|
```python
|
|
|
|
info()
|
|
|
|
```
|
2021-04-09 15:10:38 -07:00
|
|
|
Provides parser metadata (version, author, etc.)
|
2020-07-30 16:20:24 -07:00
|
|
|
|
|
|
|
## parse
|
|
|
|
```python
|
|
|
|
parse(data, raw=False, quiet=False)
|
|
|
|
```
|
|
|
|
|
|
|
|
Main text parsing function
|
|
|
|
|
|
|
|
Note: this is just a wrapper for jc.parsers.ini
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
data: (string) text data to parse
|
2022-01-21 07:42:03 -08:00
|
|
|
raw: (boolean) unprocessed output if True
|
2020-07-30 16:20:24 -07:00
|
|
|
quiet: (boolean) suppress warning messages if True
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
Dictionary representing the key/value file
|
|
|
|
|
2021-04-09 15:10:38 -07:00
|
|
|
## Parser Information
|
|
|
|
Compatibility: linux, darwin, cygwin, win32, aix, freebsd
|
|
|
|
|
|
|
|
Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com)
|