Common functions for dealing with entries in ini-like file.
Exception classes used in the library.
Class representation of ini-like file.
Parsing contents of ini-like files via range-based interface.
Reading ini-like files without usage of inilike.file.IniLikeFile class.
Reading and writing ini-like files used in some Unix systems and Freedesktop specifications.
ini-like is informal name for the file format that look like this:
To work with ini-like files correctly it's essential to understand the difference between escaped values and unescaped ones. Escaping is needed to represent new line characters in values.
In inilike.file.IniLikeGroup internally all values are stored in the escaped form (the same way as they are stored in the file).