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

doc update

This commit is contained in:
Kelly Brazil
2022-07-18 14:23:52 -07:00
parent 81fb294859
commit 4f7f8dd82b

View File

@ -171,7 +171,7 @@ def _parser_is_streaming(parser):
def parse( def parse(
parser_mod_name: str, parser_mod_name: str,
data: Union[str, Iterable[str]], data: Union[str, bytes, Iterable[str]],
quiet: bool = False, quiet: bool = False,
raw: bool = False, raw: bool = False,
ignore_exceptions: bool = None, ignore_exceptions: bool = None,
@ -216,9 +216,9 @@ def parse(
cli-name, and --argument-name cli-name, and --argument-name
variants of the module name. variants of the module name.
data: (string or data to parse (string for normal data: (string or data to parse (string or bytes for
iterable) parsers, iterable of strings for bytes or standard parsers, iterable of
streaming parsers) iterable) strings for streaming parsers)
raw: (boolean) output preprocessed JSON if True raw: (boolean) output preprocessed JSON if True