etlplus.file.ini

etlplus.file.ini module.

Helpers for reading/writing initialization (INI) files.

Notes

  • An INI file is a simple configuration file format that uses sections,

    properties, and values.

  • Common cases:
    • Sections are denoted by square brackets (e.g., [section]).

    • Properties are key-value pairs (e.g., key=value).

    • Comments are often indicated by semicolons (;) or hash symbols

      (#).

  • Rule of thumb:
    • If the file follows the INI specification, use this module for

      reading and writing.

Classes

IniFile()

Handler implementation for INI files.