mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-21 00:19:42 +02:00
doc update
This commit is contained in:
@ -15,6 +15,7 @@ pydocmd simple jc.parsers.fstab+ > ../docs/parsers/fstab.md
|
|||||||
pydocmd simple jc.parsers.history+ > ../docs/parsers/history.md
|
pydocmd simple jc.parsers.history+ > ../docs/parsers/history.md
|
||||||
pydocmd simple jc.parsers.hosts+ > ../docs/parsers/hosts.md
|
pydocmd simple jc.parsers.hosts+ > ../docs/parsers/hosts.md
|
||||||
pydocmd simple jc.parsers.ifconfig+ > ../docs/parsers/ifconfig.md
|
pydocmd simple jc.parsers.ifconfig+ > ../docs/parsers/ifconfig.md
|
||||||
|
pydocmd simple jc.parsers.ini+ > ../docs/parsers/ini.md
|
||||||
pydocmd simple jc.parsers.iptables+ > ../docs/parsers/iptables.md
|
pydocmd simple jc.parsers.iptables+ > ../docs/parsers/iptables.md
|
||||||
pydocmd simple jc.parsers.jobs+ > ../docs/parsers/jobs.md
|
pydocmd simple jc.parsers.jobs+ > ../docs/parsers/jobs.md
|
||||||
pydocmd simple jc.parsers.ls+ > ../docs/parsers/ls.md
|
pydocmd simple jc.parsers.ls+ > ../docs/parsers/ls.md
|
||||||
|
87
docs/parsers/ini.md
Normal file
87
docs/parsers/ini.md
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
# jc.parsers.ini
|
||||||
|
jc - JSON CLI output utility ini Parser
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
|
||||||
|
specify --ini as the first argument if the piped input is coming from a ini file
|
||||||
|
|
||||||
|
Compatibility:
|
||||||
|
|
||||||
|
'linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
$ cat example.ini
|
||||||
|
[DEFAULT]
|
||||||
|
ServerAliveInterval = 45
|
||||||
|
Compression = yes
|
||||||
|
CompressionLevel = 9
|
||||||
|
ForwardX11 = yes
|
||||||
|
|
||||||
|
[bitbucket.org]
|
||||||
|
User = hg
|
||||||
|
|
||||||
|
[topsecret.server.com]
|
||||||
|
Port = 50022
|
||||||
|
ForwardX11 = no
|
||||||
|
|
||||||
|
$ cat example.ini | jc --ini -p
|
||||||
|
{
|
||||||
|
"bitbucket.org": {
|
||||||
|
"serveraliveinterval": "45",
|
||||||
|
"compression": "yes",
|
||||||
|
"compressionlevel": "9",
|
||||||
|
"forwardx11": "yes",
|
||||||
|
"user": "hg"
|
||||||
|
},
|
||||||
|
"topsecret.server.com": {
|
||||||
|
"serveraliveinterval": "45",
|
||||||
|
"compression": "yes",
|
||||||
|
"compressionlevel": "9",
|
||||||
|
"forwardx11": "no",
|
||||||
|
"port": "50022"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
## info
|
||||||
|
```python
|
||||||
|
info(self, /, *args, **kwargs)
|
||||||
|
```
|
||||||
|
|
||||||
|
## process
|
||||||
|
```python
|
||||||
|
process(proc_data)
|
||||||
|
```
|
||||||
|
|
||||||
|
Final processing to conform to the schema.
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
|
||||||
|
proc_data: (dictionary) raw structured data to process
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
|
||||||
|
Dictionary representing an ini document:
|
||||||
|
|
||||||
|
{
|
||||||
|
ini document converted to a dictionary
|
||||||
|
see configparser standard library documentation for more details
|
||||||
|
}
|
||||||
|
|
||||||
|
## parse
|
||||||
|
```python
|
||||||
|
parse(data, raw=False, quiet=False)
|
||||||
|
```
|
||||||
|
|
||||||
|
Main text parsing function
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
|
||||||
|
data: (string) text data to parse
|
||||||
|
raw: (boolean) output preprocessed JSON if True
|
||||||
|
quiet: (boolean) suppress warning messages if True
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
|
||||||
|
Dictionary representing the ini file
|
||||||
|
|
@ -9,7 +9,7 @@ Compatibility:
|
|||||||
'linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'
|
'linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
|
||||||
$ cat example.ini
|
$ cat example.ini
|
||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
ServerAliveInterval = 45
|
ServerAliveInterval = 45
|
||||||
@ -73,7 +73,8 @@ def process(proc_data):
|
|||||||
Dictionary representing an ini document:
|
Dictionary representing an ini document:
|
||||||
|
|
||||||
{
|
{
|
||||||
ini Document converted to a Dictionary
|
ini document converted to a dictionary
|
||||||
|
see configparser standard library documentation for more details
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user