mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-07-17 01:32:37 +02:00
doc update
This commit is contained in:
@ -36,7 +36,7 @@ Usage (module):
|
|||||||
|
|
||||||
Schema:
|
Schema:
|
||||||
|
|
||||||
ini document converted to a dictionary - see the python configparser
|
INI document converted to a dictionary - see the python configparser
|
||||||
standard library documentation for more details.
|
standard library documentation for more details.
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -96,7 +96,7 @@ Parameters:
|
|||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
|
|
||||||
Dictionary representing the ini file
|
Dictionary representing the INI file.
|
||||||
|
|
||||||
### Parser Information
|
### Parser Information
|
||||||
Compatibility: linux, darwin, cygwin, win32, aix, freebsd
|
Compatibility: linux, darwin, cygwin, win32, aix, freebsd
|
||||||
|
@ -26,8 +26,8 @@ Usage (module):
|
|||||||
|
|
||||||
Schema:
|
Schema:
|
||||||
|
|
||||||
key/value document converted to a dictionary - see the configparser standard
|
Key/Value document converted to a dictionary - see the python configparser
|
||||||
library documentation for more details.
|
standard library documentation for more details.
|
||||||
|
|
||||||
{
|
{
|
||||||
"key1": string,
|
"key1": string,
|
||||||
|
@ -31,7 +31,7 @@ Usage (module):
|
|||||||
|
|
||||||
Schema:
|
Schema:
|
||||||
|
|
||||||
ini document converted to a dictionary - see the python configparser
|
INI document converted to a dictionary - see the python configparser
|
||||||
standard library documentation for more details.
|
standard library documentation for more details.
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -101,7 +101,7 @@ def _process(proc_data):
|
|||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
|
|
||||||
Dictionary representing an ini or simple key/value pair document.
|
Dictionary representing the INI file.
|
||||||
"""
|
"""
|
||||||
# remove quotation marks from beginning and end of values
|
# remove quotation marks from beginning and end of values
|
||||||
for heading in proc_data:
|
for heading in proc_data:
|
||||||
@ -130,7 +130,7 @@ def parse(data, raw=False, quiet=False):
|
|||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
|
|
||||||
Dictionary representing the ini file
|
Dictionary representing the INI file.
|
||||||
"""
|
"""
|
||||||
jc.utils.compatibility(__name__, info.compatible, quiet)
|
jc.utils.compatibility(__name__, info.compatible, quiet)
|
||||||
jc.utils.input_type_check(data)
|
jc.utils.input_type_check(data)
|
||||||
|
@ -21,8 +21,8 @@ Usage (module):
|
|||||||
|
|
||||||
Schema:
|
Schema:
|
||||||
|
|
||||||
key/value document converted to a dictionary - see the configparser standard
|
Key/Value document converted to a dictionary - see the python configparser
|
||||||
library documentation for more details.
|
standard library documentation for more details.
|
||||||
|
|
||||||
{
|
{
|
||||||
"key1": string,
|
"key1": string,
|
||||||
@ -78,7 +78,7 @@ def _process(proc_data):
|
|||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
|
|
||||||
Dictionary representing a key/value pair document.
|
Dictionary representing a Key/Value pair document.
|
||||||
"""
|
"""
|
||||||
# remove quotation marks from beginning and end of values
|
# remove quotation marks from beginning and end of values
|
||||||
for key in proc_data:
|
for key in proc_data:
|
||||||
|
Reference in New Issue
Block a user