1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-13 01:20:24 +02:00

doc update

This commit is contained in:
Kelly Brazil
2022-07-18 14:31:13 -07:00
parent 4f7f8dd82b
commit fe3b5bc2ed
4 changed files with 7 additions and 7 deletions

View File

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

View File

@ -64,7 +64,7 @@ Use `help(jc.lib)` for details.
parse(
parser_module_name: str,
data: str | Iterable
data: str | bytes | Iterable
) -> dict | list[dict] | Iterable[dict]
High-level API to easily access the parser. This API will find both

View File

@ -60,7 +60,7 @@ Use `help(jc.lib)` for details.
parse(
parser_module_name: str,
data: str | Iterable
data: str | bytes | Iterable
) -> dict | list[dict] | Iterable[dict]
High-level API to easily access the parser. This API will find both

View File

@ -1,4 +1,4 @@
.TH jc 1 2022-07-16 1.20.3 "JSON Convert"
.TH jc 1 2022-07-18 1.20.3 "JSON Convert"
.SH NAME
\fBjc\fP \- JSON Convert JSONifies the output of many CLI tools and file-types
.SH SYNOPSIS