1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-19 00:17:51 +02:00

add new high-level api info

This commit is contained in:
Kelly Brazil
2022-01-18 14:18:12 -08:00
parent 03feb89c84
commit 2c42baf3a4
34 changed files with 174 additions and 0 deletions

View File

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