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

doc update

This commit is contained in:
Kelly Brazil
2024-01-30 20:19:32 -08:00
parent 7659fe470a
commit 45a1be11e2
6 changed files with 187 additions and 2 deletions
+76
View File
@@ -0,0 +1,76 @@
[Home](https://kellyjonbrazil.github.io/jc/)
<a id="jc.parsers.path"></a>
# jc.parsers.path
jc - JSON Convert POSIX path string parser
Parse a POSIX path.
Usage (cli):
$ echo "/Users/admin/.docker/bin" | jc --path
Usage (module):
import jc
result = jc.parse('path', path_string)
Schema:
{
"path": string,
"parent": string,
"filename": string,
"stem": string,
"extension": string,
"path_list": [
string
],
}
Examples:
$ echo "/abc/def/gh.txt" | jc --path -p
{
"path": "/abc/def/gh.txt",
"parent": "/abc/def",
"filename": "gh.txt",
"stem": "gh",
"extension": "txt",
"path_list": [
"/",
"abc",
"def",
"gh.txt"
]
}
<a id="jc.parsers.path.parse"></a>
### parse
```python
def parse(data, raw=False, quiet=False)
```
Main text parsing function
Parameters:
data: (string) text data to parse
raw: (boolean) unprocessed output if True
quiet: (boolean) suppress warning messages if True
Returns:
Dictionary representing a Key/Value pair document.
### Parser Information
Compatibility: linux, darwin, cygwin, win32, aix, freebsd
Source: [`jc/parsers/path.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/path.py)
This parser can be used with the `--slurp` command-line option.
Version 1.0 by Michael Nietzold (https://github.com/muescha)
+95
View File
@@ -0,0 +1,95 @@
[Home](https://kellyjonbrazil.github.io/jc/)
<a id="jc.parsers.path_list"></a>
# jc.parsers.path\_list
jc - JSON Convert POSIX path list string parser
Parse a colon-separated POSIX path list, commonly found in environment
variables.
Usage (cli):
$ echo "/Users/admin/.docker/bin:/Users/admin/.asdf/shims" | jc --path-list
Usage (module):
import jc
result = jc.parse('path-list', path_string)
Schema:
[
{
"path": string,
"parent": string,
"filename": string,
"stem": string,
"extension": string,
"path_list": [
string
],
}
]
Examples:
$ echo "/abc/def/gh.txt:/xyz/uvw/ab.app" | jc --path-list -p
[
{
"path": "/abc/def/gh.txt",
"parent": "/abc/def",
"filename": "gh.txt",
"stem": "gh",
"extension": "txt",
"path_list": [
"/",
"abc",
"def",
"gh.txt"
]
},
{
"path": "/xyz/uvw/ab.app",
"parent": "/xyz/uvw",
"filename": "ab.app",
"stem": "ab",
"extension": "app",
"path_list": [
"/",
"xyz",
"uvw",
"ab.app"
]
}
]
<a id="jc.parsers.path_list.parse"></a>
### parse
```python
def parse(data, raw=False, quiet=False)
```
Main text parsing function
Parameters:
data: (string) text data to parse
raw: (boolean) unprocessed output if True
quiet: (boolean) suppress warning messages if True
Returns:
List of Dictionaries representing a Key/Value pair document.
### Parser Information
Compatibility: linux, darwin, cygwin, win32, aix, freebsd
Source: [`jc/parsers/path_list.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/path_list.py)
This parser can be used with the `--slurp` command-line option.
Version 1.0 by Michael Nietzold (https://github.com/muescha)