1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-08-08 22:36:48 +02:00

fix csv_s documentation

This commit is contained in:
Kelly Brazil
2021-11-22 09:10:11 -08:00
parent 597d39c28e
commit 8568d0d328
3 changed files with 7 additions and 3 deletions

View File

@@ -16,7 +16,9 @@ Usage (cli):
Usage (module):
import jc.parsers.csv_s
result = jc.parsers.csv_s.parse(csv_output)
result = jc.parsers.csv_s.parse(csv_output.splitlines()) # result is an iterable object
for item in result:
# do something
Schema:

View File

@@ -13,7 +13,9 @@ Usage (cli):
Usage (module):
import jc.parsers.csv_s
result = jc.parsers.csv_s.parse(csv_output)
result = jc.parsers.csv_s.parse(csv_output.splitlines()) # result is an iterable object
for item in result:
# do something
Schema:

View File

@@ -1,4 +1,4 @@
.TH jc 1 2021-11-18 1.17.2 "JSON CLI output utility"
.TH jc 1 2021-11-22 1.17.2 "JSON CLI output utility"
.SH NAME
jc \- JSONifies the output of many CLI tools and file-types
.SH SYNOPSIS