1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-23 00:29:59 +02:00
This commit is contained in:
Kelly Brazil
2023-12-22 10:10:59 -08:00
parent e8c0bef6ca
commit 1868b28f74
2 changed files with 6 additions and 6 deletions

View File

@ -19,12 +19,12 @@ values. All values are contained in lists/arrays.
Usage (cli):
$ cat foo.txt | jc --kv
$ cat foo.txt | jc --kv-dup
Usage (module):
import jc
result = jc.parse('kv', kv_file_output)
result = jc.parse('kv_dup', kv_file_output)
Schema:
@ -55,7 +55,7 @@ Examples:
occupation:"Engineer"
occupation = "Pilot"
$ cat keyvalue.txt | jc --kv -p
$ cat keyvalue.txt | jc --kv-dup -p
{
"name": ["John Doe"],
"address": ["555 California Drive"],

View File

@ -14,12 +14,12 @@ values. All values are contained in lists/arrays.
Usage (cli):
$ cat foo.txt | jc --kv
$ cat foo.txt | jc --kv-dup
Usage (module):
import jc
result = jc.parse('kv', kv_file_output)
result = jc.parse('kv_dup', kv_file_output)
Schema:
@ -50,7 +50,7 @@ Examples:
occupation:"Engineer"
occupation = "Pilot"
$ cat keyvalue.txt | jc --kv -p
$ cat keyvalue.txt | jc --kv-dup -p
{
"name": ["John Doe"],
"address": ["555 California Drive"],