1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-10-08 23:22:21 +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: