etlplus.file.cfg

etlplus.file.cfg module.

Stub helpers for reading/writing config (CFG) files (not implemented yet).

Notes

  • A CFG file is a configuration file that may use various syntaxes, such as

    INI, YAML, or custom formats.

  • Common cases:
    • INI-style key-value pairs with sections (such as in Python ecosystems,

      using configparser).

    • YAML-like structures with indentation.

    • Custom formats specific to certain applications.

  • Rule of thumb:
    • If the file follows a standard format like INI or YAML, consider using

      dedicated parsers.

Classes

CfgFile()

Stub handler implementation for CFG files.