Index of the iniparser module
-
m
initools.iniparser
...
- A parser for .ini-syntax files. INIParser should be subclassed to
create a data structure from the file. See INIParser for more
-
C
BasicParser
...
- A simple subclass of INIParser; creates a nested data structure
like {'section_name': {'variable': ['values']}}
- f __init__ ...
- f add_comment ...
- f assignment ...
- f error_continuation_without_assignment ...
- f error_missing_equal ...
- f error_no_section_name ...
- f error_section_without_end_bracket ...
- f get_comment ... - Returns None if not a comment
- f get_section ... - Returns None if not a section
- f load ...
- f loadfile ...
- f loadstring ...
- f new_section ...
- f parse_error ...
- f process_assignment ...
- f process_file ...
- f reset ...
- f split_name_value ...
-
C
INIParser
...
- A parser for .ini-syntax files.
- f __init__ ...
- f add_comment ...
- f assignment ...
- f error_continuation_without_assignment ...
- f error_missing_equal ...
- f error_no_section_name ...
- f error_section_without_end_bracket ...
- f get_comment ... - Returns None if not a comment
- f get_section ... - Returns None if not a section
- f load ...
- f loadfile ...
- f loadstring ...
- f new_section ...
- f parse_error ...
- f process_assignment ...
- f process_file ...
- f reset ...
- f split_name_value ...
- C ParseError ...
-
C
BasicParser
...
- A simple subclass of INIParser; creates a nested data structure
like {'section_name': {'variable': ['values']}}