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
|
|
|
|
2023-01-08 19:46:13 -08:00
|
|
|
jc - JSON Convert INI file parser
|
2020-08-05 16:51:58 -07:00
|
|
|
|
2023-01-08 19:46:13 -08:00
|
|
|
Parses standard INI files.
|
2022-04-04 11:42:16 -07:00
|
|
|
|
|
|
|
- Delimiter can be `=` or `:`. Missing values are supported.
|
|
|
|
- Comment prefix can be `#` or `;`. Comments must be on their own line.
|
|
|
|
- If duplicate keys are found, only the last value will be used.
|
2023-01-11 11:17:47 -08:00
|
|
|
- If any section names have the same name as a top-level key, the top-level
|
|
|
|
key will be overwritten by the section data.
|
2020-08-05 16:51:58 -07:00
|
|
|
|
2022-06-15 12:51:42 -07:00
|
|
|
> Note: Values starting and ending with double or single 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 18:03:34 -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 18:03:34 -08:00
|
|
|
import jc
|
|
|
|
result = jc.parse('ini', ini_file_output)
|
2022-01-18 15:38:03 -08:00
|
|
|
|
2021-04-08 15:52:49 -07:00
|
|
|
Schema:
|
|
|
|
|
2023-01-03 13:04:13 -08:00
|
|
|
INI document converted to a dictionary - see the python configparser
|
2022-05-28 12:41:36 -07:00
|
|
|
standard library documentation for more details.
|
2022-01-25 18:03:34 -08:00
|
|
|
|
|
|
|
{
|
2023-01-08 19:46:13 -08:00
|
|
|
"<key1>": string,
|
|
|
|
"<key2>": string,
|
|
|
|
"<section1>": {
|
|
|
|
"<key1>": string,
|
|
|
|
"<key2>": string
|
|
|
|
},
|
|
|
|
"<section2>": {
|
|
|
|
"<key1>": string,
|
|
|
|
"<key2>": string
|
|
|
|
}
|
2022-01-25 18:03:34 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ cat example.ini
|
2023-01-08 19:46:13 -08:00
|
|
|
foo = fiz
|
|
|
|
bar = buz
|
2022-01-25 18:03:34 -08:00
|
|
|
|
2023-01-06 09:28:13 -08:00
|
|
|
[section1]
|
2023-01-08 19:46:13 -08:00
|
|
|
fruit = apple
|
|
|
|
color = blue
|
2022-01-25 18:03:34 -08:00
|
|
|
|
2023-01-06 09:28:13 -08:00
|
|
|
[section2]
|
2023-01-08 19:46:13 -08:00
|
|
|
fruit = pear
|
|
|
|
color = green
|
2022-01-25 18:03:34 -08:00
|
|
|
|
|
|
|
$ cat example.ini | jc --ini -p
|
|
|
|
{
|
2023-01-08 19:46:13 -08:00
|
|
|
"foo": "fiz",
|
|
|
|
"bar": "buz",
|
2023-01-06 09:28:13 -08:00
|
|
|
"section1": {
|
2023-01-08 19:46:13 -08:00
|
|
|
"fruit": "apple",
|
|
|
|
"color": "blue"
|
2022-01-25 18:03:34 -08:00
|
|
|
},
|
2023-01-06 09:28:13 -08:00
|
|
|
"section2": {
|
2023-01-08 19:46:13 -08:00
|
|
|
"fruit": "pear",
|
|
|
|
"color": "green"
|
2022-01-25 18:03:34 -08:00
|
|
|
}
|
|
|
|
}
|
2022-01-25 17:07:47 -08:00
|
|
|
|
|
|
|
<a id="jc.parsers.ini.parse"></a>
|
|
|
|
|
2022-03-05 12:15:14 -08:00
|
|
|
### parse
|
2022-01-25 17:07:47 -08:00
|
|
|
|
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 18:03:34 -08:00
|
|
|
Parameters:
|
2020-02-03 21:28:11 -08:00
|
|
|
|
2022-01-25 18:03:34 -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 18:03:34 -08:00
|
|
|
Returns:
|
2020-02-03 21:28:11 -08:00
|
|
|
|
2023-01-03 13:04:13 -08:00
|
|
|
Dictionary representing the INI file.
|
2020-02-03 21:28:11 -08:00
|
|
|
|
2022-01-25 19:18:54 -08:00
|
|
|
### Parser Information
|
2021-04-09 10:36:42 -07:00
|
|
|
Compatibility: linux, darwin, cygwin, win32, aix, freebsd
|
|
|
|
|
2023-01-03 12:11:05 -08:00
|
|
|
Version 2.0 by Kelly Brazil (kellyjonbrazil@gmail.com)
|