2020-07-30 16:20:24 -07:00
|
|
|
|
2020-02-03 21:28:11 -08:00
|
|
|
# jc.parsers.ini
|
2020-02-04 21:44:10 -08:00
|
|
|
jc - JSON CLI output utility INI Parser
|
2020-02-03 21:28:11 -08:00
|
|
|
|
2020-08-05 13:32:59 -07:00
|
|
|
Usage (cli):
|
2020-02-03 21:28:11 -08:00
|
|
|
|
2020-07-24 16:17:16 -07:00
|
|
|
Specify --ini as the first argument if the piped input is coming from an INI file or any
|
|
|
|
simple key/value pair file. Delimiter can be '=' or ':'. Missing values are supported.
|
|
|
|
Comment prefix can be '#' or ';'. Comments must be on their own line.
|
2020-02-03 21:28:11 -08:00
|
|
|
|
2020-08-05 13:32:59 -07:00
|
|
|
Usage (module):
|
|
|
|
|
|
|
|
import jc.parsers.ini
|
|
|
|
result = jc.parsers.ini.parse(ini_file_output)
|
|
|
|
|
2020-02-03 21:28:11 -08:00
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2020-02-03 21:28:11 -08:00
|
|
|
## info
|
|
|
|
```python
|
2020-07-30 16:20:24 -07:00
|
|
|
info()
|
2020-02-03 21:28:11 -08:00
|
|
|
```
|
|
|
|
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2020-02-03 21:28:11 -08:00
|
|
|
## process
|
|
|
|
```python
|
|
|
|
process(proc_data)
|
|
|
|
```
|
|
|
|
|
|
|
|
Final processing to conform to the schema.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
proc_data: (dictionary) raw structured data to process
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
2020-07-24 16:29:27 -07:00
|
|
|
Dictionary representing an ini or simple key/value pair document:
|
2020-02-03 21:28:11 -08:00
|
|
|
|
|
|
|
{
|
2020-07-24 16:17:16 -07:00
|
|
|
ini or key/value document converted to a dictionary - see configparser standard
|
|
|
|
library documentation for more details.
|
|
|
|
|
|
|
|
Note: Values starting and ending with quotation marks will have the marks removed.
|
2020-07-24 16:29:27 -07:00
|
|
|
If you would like to keep the quotation marks, use the -r or raw=True argument.
|
2020-02-03 21:28:11 -08:00
|
|
|
}
|
|
|
|
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2020-02-03 21:28:11 -08:00
|
|
|
## 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
|
|
|
|
|