2021-04-09 10:36:42 -07:00
|
|
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
2022-01-25 17:07:47 -08:00
|
|
|
<a id="jc.parsers.ini"></a>
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2020-02-03 21:28:11 -08:00
|
|
|
# jc.parsers.ini
|
2022-01-25 17:07:47 -08:00
|
|
|
|
2020-08-05 16:51:58 -07:00
|
|
|
jc - JSON CLI output utility `INI` file parser
|
|
|
|
|
2022-01-19 17:30:14 -08:00
|
|
|
Parses standard `INI` files and files containing simple key/value pairs.
|
|
|
|
Delimiter can be `=` or `:`. Missing values are supported. Comment prefix
|
|
|
|
can be `#` or `;`. Comments must be on their own line.
|
2020-08-05 16:51:58 -07:00
|
|
|
|
2022-01-19 17:30:14 -08:00
|
|
|
Note: Values starting and ending with quotation marks will have the marks
|
|
|
|
removed. If you would like to keep the quotation marks, use the `-r`
|
|
|
|
command-line argument or the `raw=True` argument in `parse()`.
|
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
|
|
|
|
2022-01-25 17:07:47 -08:00
|
|
|
$ cat foo.ini | jc --ini
|
2020-02-03 21:28:11 -08:00
|
|
|
|
2020-08-05 13:32:59 -07:00
|
|
|
Usage (module):
|
|
|
|
|
2022-01-25 17:07:47 -08:00
|
|
|
import jc
|
|
|
|
result = jc.parse('ini', ini_file_output)
|
2022-01-18 15:38:03 -08:00
|
|
|
|
2022-01-25 17:07:47 -08:00
|
|
|
or
|
2022-01-18 15:38:03 -08:00
|
|
|
|
2022-01-25 17:07:47 -08:00
|
|
|
import jc.parsers.ini
|
|
|
|
result = jc.parsers.ini.parse(ini_file_output)
|
2020-08-05 13:32:59 -07:00
|
|
|
|
2021-04-08 15:52:49 -07:00
|
|
|
Schema:
|
|
|
|
|
2022-01-25 17:07:47 -08:00
|
|
|
ini or key/value document converted to a dictionary - see the
|
|
|
|
configparser standard library documentation for more details.
|
|
|
|
|
|
|
|
{
|
|
|
|
"key1": string,
|
|
|
|
"key2": string
|
|
|
|
}
|
|
|
|
|
|
|
|
**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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
<a id="jc.parsers.ini.info"></a>
|
|
|
|
|
|
|
|
## info Objects
|
|
|
|
|
2020-02-03 21:28:11 -08:00
|
|
|
```python
|
2022-01-25 17:07:47 -08:00
|
|
|
class info()
|
2020-02-03 21:28:11 -08:00
|
|
|
```
|
2022-01-25 17:07:47 -08:00
|
|
|
|
2021-04-08 15:52:49 -07:00
|
|
|
Provides parser metadata (version, author, etc.)
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2022-01-25 17:07:47 -08:00
|
|
|
<a id="jc.parsers.ini.parse"></a>
|
|
|
|
|
|
|
|
#### parse
|
|
|
|
|
2020-02-03 21:28:11 -08:00
|
|
|
```python
|
2022-01-25 17:07:47 -08:00
|
|
|
def parse(data, raw=False, quiet=False)
|
2020-02-03 21:28:11 -08:00
|
|
|
```
|
|
|
|
|
|
|
|
Main text parsing function
|
|
|
|
|
2022-01-25 17:07:47 -08:00
|
|
|
**Arguments**:
|
2020-02-03 21:28:11 -08:00
|
|
|
|
2022-01-25 17:07:47 -08:00
|
|
|
|
|
|
|
- `data` - (string) text data to parse
|
|
|
|
- `raw` - (boolean) unprocessed output if True
|
|
|
|
- `quiet` - (boolean) suppress warning messages if True
|
|
|
|
|
2020-02-03 21:28:11 -08:00
|
|
|
|
2022-01-25 17:07:47 -08:00
|
|
|
**Returns**:
|
2020-02-03 21:28:11 -08:00
|
|
|
|
2022-01-25 17:07:47 -08:00
|
|
|
|
|
|
|
Dictionary representing the ini file
|
2020-02-03 21:28:11 -08:00
|
|
|
|
2021-04-09 10:36:42 -07:00
|
|
|
## Parser Information
|
|
|
|
Compatibility: linux, darwin, cygwin, win32, aix, freebsd
|
|
|
|
|
2021-12-01 16:12:51 -08:00
|
|
|
Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com)
|