KeyFile#
- class KeyFile(**kwargs)#
GKeyFile parses .ini-like config files.
GKeyFile lets you parse, edit or create files containing groups of
key-value pairs, which we call ‘key files’ for lack of a better name.
Several freedesktop.org specifications use key files. For example, the
Desktop Entry Specification
and the Icon Theme Specification.
The syntax of key files is described in detail in the Desktop Entry Specification, here is a quick summary: Key files consists of groups of key-value pairs, interspersed with comments.
# this is just an example
# there can be comments before the first group
[First Group]
Name=Key File Example\tthis value shows\nescaping
# localized strings are stored in multiple key-value pairs
Welcome=Hello
Welcome[de]=Hallo
Welcome[fr_FR]=Bonjour
Welcome[it]=Ciao
[Another Group]
Numbers=2;20;-200;0
Booleans=true;false;true;true
Lines beginning with a # and blank lines are considered comments.
Groups are started by a header line containing the group name enclosed
in [ and ], and ended implicitly by the start of the next group or
the end of the file. Each key-value pair must be contained in a group.
Key-value pairs generally have the form key=value, with the exception
of localized strings, which have the form key[locale]=value, with a
locale identifier of the form lang_COUNTRY@MODIFIER where COUNTRY
and MODIFIER are optional. As a special case, the locale C is associated
with the untranslated pair key=value (since GLib 2.84). Space before and
after the = character is ignored. Newline, tab, carriage return and
backslash characters in value are escaped as \n, \t, \r, and \\\\,
respectively. To preserve leading spaces in values, these can also be escaped
as \s.
Key files can store strings (possibly with localized variants), integers,
booleans and lists of these. Lists are separated by a separator character,
typically ; or ,. To use the list separator character in a value in
a list, it has to be escaped by prefixing it with a backslash.
This syntax is obviously inspired by the .ini files commonly met on Windows, but there are some important differences:
.ini files use the
;character to begin comments, key files use the#character.Key files do not allow for ungrouped keys meaning only comments can precede the first group.
Key files are always encoded in UTF-8.
Key and Group names are case-sensitive. For example, a group called
[GROUP]is a different from[group].- .ini files don’t have a strongly typed boolean entry type,
they only have
GetProfileInt(). In key files, onlytrueandfalse(in lower case) are allowed.
Note that in contrast to the Desktop Entry Specification, groups in key files may contain the same key multiple times; the last entry wins. Key files may also contain multiple groups with the same name; they are merged together. Another difference is that keys and group names in key files are not restricted to ASCII characters.
Here is an example of loading a key file and reading a value:
g_autoptr(GError) error = NULL;
g_autoptr(GKeyFile) key_file = g_key_file_new ();
if (!g_key_file_load_from_file (key_file, "key-file.ini", flags, &error))
{
if (!g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT))
g_warning ("Error loading key file: %s", error->message);
return;
}
g_autofree gchar *val = g_key_file_get_string (key_file, "Group Name", "SomeKey", &error);
if (val == NULL &&
!g_error_matches (error, G_KEY_FILE_ERROR, G_KEY_FILE_ERROR_KEY_NOT_FOUND))
{
g_warning ("Error finding key in key file: %s", error->message);
return;
}
else if (val == NULL)
{
// Fall back to a default value.
val = g_strdup ("default-value");
}
Here is an example of creating and saving a key file:
g_autoptr(GKeyFile) key_file = g_key_file_new ();
const gchar *val = …;
g_autoptr(GError) error = NULL;
g_key_file_set_string (key_file, "Group Name", "SomeKey", val);
// Save as a file.
if (!g_key_file_save_to_file (key_file, "key-file.ini", &error))
{
g_warning ("Error saving key file: %s", error->message);
return;
}
// Or store to a GBytes for use elsewhere.
gsize data_len;
g_autofree guint8 *data = (guint8 *) g_key_file_to_data (key_file, &data_len, &error);
if (data == NULL)
{
g_warning ("Error saving key file: %s", error->message);
return;
}
g_autoptr(GBytes) bytes = g_bytes_new_take (g_steal_pointer (&data), data_len);
Constructors#
- class KeyFile
- classmethod new() KeyFile#
Creates a new empty
KeyFileobject.Use
load_from_file,load_from_data,load_from_dirsorload_from_data_dirsto read an existing key file.Added in version 2.6.
Methods#
- class KeyFile
-
- get_boolean(group_name: str, key: str) bool#
Returns the value associated with
keyundergroup_nameas a boolean.If
keycannot be found thenKEY_NOT_FOUNDis returned. Likewise, if the value associated withkeycannot be interpreted as a boolean thenINVALID_VALUEis returned.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
- get_boolean_list(group_name: str, key: str) list[bool]#
Returns the values associated with
keyundergroup_nameas booleans.If
keycannot be found thenKEY_NOT_FOUNDis returned. Likewise, if the values associated withkeycannot be interpreted as booleans thenINVALID_VALUEis returned.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
- get_comment(group_name: str | None = None, key: str | None = None) str#
Retrieves a comment above
keyfromgroup_name.If
keyisNULLthencommentwill be read from abovegroup_name. If bothkeyandgroup_nameareNULL, thencommentwill be read from above the first group in the file.Note that the returned string does not include the
#comment markers, but does include any whitespace after them (on each line). It includes the line breaks between lines, but does not include the final line break.Added in version 2.6.
- Parameters:
group_name – a group name, or
NULLto get a top-level commentkey – a key, or
NULLto get a group comment
- get_double(group_name: str, key: str) float#
Returns the value associated with
keyundergroup_nameas a double.If
keycannot be found thenKEY_NOT_FOUNDis returned. Likewise, if the value associated withkeycannot be interpreted as a double thenINVALID_VALUEis returned.Added in version 2.12.
- Parameters:
group_name – a group name
key – a key
- get_double_list(group_name: str, key: str) list[float]#
Returns the values associated with
keyundergroup_nameas doubles.If
keycannot be found thenKEY_NOT_FOUNDis returned. Likewise, if the values associated withkeycannot be interpreted as doubles thenINVALID_VALUEis returned.Added in version 2.12.
- Parameters:
group_name – a group name
key – a key
- get_groups() tuple[list[str], int]#
Returns all groups in the key file loaded with
key_file.The array of returned groups will be
NULL-terminated, solengthmay optionally beNULL.Added in version 2.6.
- get_int64(group_name: str, key: str) int#
Returns the value associated with
keyundergroup_nameas a signed 64-bit integer.This is similar to
get_integerbut can return 64-bit results without truncation.Added in version 2.26.
- Parameters:
group_name – a group name
key – a key
- get_integer(group_name: str, key: str) int#
Returns the value associated with
keyundergroup_nameas an integer.If
keycannot be found thenKEY_NOT_FOUNDis returned. Likewise, if the value associated withkeycannot be interpreted as an integer, or is out of range for agint, thenINVALID_VALUEis returned.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
- get_integer_list(group_name: str, key: str) list[int]#
Returns the values associated with
keyundergroup_nameas integers.If
keycannot be found thenKEY_NOT_FOUNDis returned. Likewise, if the values associated withkeycannot be interpreted as integers, or are out of range forgint, thenINVALID_VALUEis returned.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
- get_keys(group_name: str) tuple[list[str], int]#
Returns all keys for the group name
group_name.The array of returned keys will be
NULL-terminated, solengthmay optionally beNULL. If thegroup_namecannot be found,GROUP_NOT_FOUNDis returned.Added in version 2.6.
- Parameters:
group_name – a group name
- get_locale_for_key(group_name: str, key: str, locale: str | None = None) str | None#
Returns the actual locale which the result of
get_locale_stringorget_locale_string_listcame from.If calling
get_locale_stringorget_locale_string_listwith exactly the samekey_file,group_name,keyandlocale, the result of those functions will have originally been tagged with the locale that is the result of this function.Added in version 2.56.
- Parameters:
group_name – a group name
key – a key
locale – a locale identifier or
NULLto use the current locale
- get_locale_string(group_name: str, key: str, locale: str | None = None) str#
Returns the value associated with
keyundergroup_nametranslated in the givenlocaleif available.If
localeisCthen the untranslated value is returned (since GLib 2.84).If
localeisNULLthen the current locale is assumed.If
localeis to be non-NULL, or if the current locale will change over the lifetime of theKeyFile, it must be loaded withKEEP_TRANSLATIONSin order to load strings for all locales.If
keycannot be found thenKEY_NOT_FOUNDis returned. If the value associated withkeycannot be interpreted or no suitable translation can be found then the untranslated value is returned.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
locale – a locale identifier or
NULLto use the current locale
- get_locale_string_list(group_name: str, key: str, locale: str | None = None) list[str]#
Returns the values associated with
keyundergroup_nametranslated in the givenlocaleif available.If
localeisCthen the untranslated value is returned (since GLib 2.84).If
localeisNULLthen the current locale is assumed.If
localeis to be non-NULL, or if the current locale will change over the lifetime of theKeyFile, it must be loaded withKEEP_TRANSLATIONSin order to load strings for all locales.If
keycannot be found thenKEY_NOT_FOUNDis returned. If the values associated withkeycannot be interpreted or no suitable translations can be found then the untranslated values are returned. The returned array isNULL-terminated, solengthmay optionally beNULL.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
locale – a locale identifier or
NULLto use the current locale
- get_start_group() str | None#
Returns the name of the start group of the file.
Added in version 2.6.
- get_string(group_name: str, key: str) str#
Returns the string value associated with
keyundergroup_name.Unlike
get_value, this function handles escape sequences like\s.If the key cannot be found,
KEY_NOT_FOUNDis returned. If thegroup_namecannot be found,GROUP_NOT_FOUNDis returned.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
- get_string_list(group_name: str, key: str) list[str]#
Returns the values associated with
keyundergroup_name.If the key cannot be found,
KEY_NOT_FOUNDis returned. If thegroup_namecannot be found,GROUP_NOT_FOUNDis returned.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
- get_uint64(group_name: str, key: str) int#
Returns the value associated with
keyundergroup_nameas an unsigned 64-bit integer.This is similar to
get_integerbut can return large positive results without truncation.Added in version 2.26.
- Parameters:
group_name – a group name
key – a key
- get_value(group_name: str, key: str) str#
Returns the raw value associated with
keyundergroup_name.Use
get_stringto retrieve an unescaped UTF-8 string.If the key cannot be found,
KEY_NOT_FOUNDis returned. If thegroup_namecannot be found,GROUP_NOT_FOUNDis returned.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
- has_group(group_name: str) bool#
Looks whether the key file has the group
group_name.Added in version 2.6.
- Parameters:
group_name – a group name
- load_from_bytes(bytes: Bytes, flags: KeyFileFlags) bool#
Loads a key file from the data in
bytesinto an emptyKeyFilestructure.If the object cannot be created then a
KeyFileErroris returned.Added in version 2.50.
- Parameters:
bytes – a
Bytesflags – flags from
KeyFileFlags
- load_from_data(data: str, length: int, flags: KeyFileFlags) bool#
Loads a key file from memory into an empty
KeyFilestructure.If the object cannot be created then a [error``GLib``.KeyFileError is returned.
Added in version 2.6.
- Parameters:
data – key file loaded in memory
length – the length of
datain bytes (or(gsize)-1if data is nul-terminated)flags – flags from
KeyFileFlags
- load_from_data_dirs(file: str, flags: KeyFileFlags) tuple[bool, str]#
Looks for a key file named
filein the paths returned fromget_user_data_dirandget_system_data_dirs.The search algorithm from
load_from_dirsis used. Iffileis found, it’s loaded intokey_fileand its full path is returned infull_path.If the file could not be loaded then either a
FileErrororKeyFileErroris returned.Added in version 2.6.
- Parameters:
file – a relative path to a filename to open and parse
flags – flags from
KeyFileFlags
- load_from_dirs(file: str, search_dirs: list[str], flags: KeyFileFlags) tuple[bool, str]#
Looks for a key file named
filein the paths specified insearch_dirs, loads the file intokey_fileand returns the file’s full path infull_path.search_dirsare checked in the order listed in the array, with the highest priority directory listed first. Within each directory,fileis looked for. If it’s not found,-characters infileare progressively replaced with directory separators to search subdirectories of the search directory. If the file has not been found after all-characters have been replaced, the next search directory insearch_dirsis checked.If the file could not be found in any of the
search_dirs,NOT_FOUNDis returned. If the file is found but the OS returns an error when opening or reading the file, aFileErroris returned. If there is a problem parsing the file, aKeyFileErroris returned.Added in version 2.14.
- Parameters:
file – a relative path to a filename to open and parse
search_dirs –
NULL-terminated array of directories to searchflags – flags from
KeyFileFlags
- load_from_file(file: str, flags: KeyFileFlags) bool#
Loads a key file into an empty
KeyFilestructure.If the OS returns an error when opening or reading the file, a
FileErroris returned. If there is a problem parsing the file, aKeyFileErroris returned.This function will never return a
NOT_FOUNDerror. If thefileis not found,NOENTis returned.Added in version 2.6.
- Parameters:
file – the path of a filename to load, in the GLib filename encoding
flags – flags from
KeyFileFlags
- remove_comment(group_name: str | None = None, key: str | None = None) bool#
Removes a comment above
keyfromgroup_name.If
keyisNULLthencommentwill be removed abovegroup_name. If bothkeyandgroup_nameareNULL, thencommentwill be removed above the first group in the file.Added in version 2.6.
- Parameters:
group_name – a group name, or
NULLto get a top-level commentkey – a key, or
NULLto get a group comment
- remove_group(group_name: str) bool#
Removes the specified group,
group_name, from the key file.Added in version 2.6.
- Parameters:
group_name – a group name
- remove_key(group_name: str, key: str) bool#
Removes
keyingroup_namefrom the key file.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key name to remove
- save_to_file(filename: str) bool#
Writes the contents of
key_filetofilenameusingfile_set_contents.If you need stricter guarantees about durability of the written file than are provided by
file_set_contents, usefile_set_contents_fullwith the return value ofto_data.This function can fail for any of the reasons that
file_set_contentsmay fail.Added in version 2.40.
- Parameters:
filename – the name of the file to write to
- set_boolean(group_name: str, key: str, value: bool) None#
Associates a new boolean value with
keyundergroup_name.If
keycannot be found then it is created.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
value – true or false
- set_boolean_list(group_name: str, key: str, list: list[bool]) None#
Associates a list of boolean values with
keyundergroup_name.If
keycannot be found then it is created.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
list – an array of boolean values
- set_comment(group_name: str | None, key: str | None, comment: str) bool#
Places a comment above
keyfromgroup_name.If
keyisNULLthencommentwill be written abovegroup_name. If bothkeyandgroup_nameareNULL, thencommentwill be written above the first group in the file.Passing a non-existent
group_nameorkeyto this function returns false and populateserror. (In contrast, passing a non-existentgroup_nameorkeytoset_stringcreates the associated group name and key.)Note that this function prepends a
#comment marker to each line ofcomment.Added in version 2.6.
- Parameters:
group_name – a group name, or
NULLto write a top-level commentkey – a key, or
NULLto write a group commentcomment – a comment
- set_double(group_name: str, key: str, value: float) None#
Associates a new double value with
keyundergroup_name.If
keycannot be found then it is created.Added in version 2.12.
- Parameters:
group_name – a group name
key – a key
value – a double value
- set_double_list(group_name: str, key: str, list: list[float]) None#
Associates a list of double values with
keyundergroup_name.If
keycannot be found then it is created.Added in version 2.12.
- Parameters:
group_name – a group name
key – a key
list – an array of double values
- set_int64(group_name: str, key: str, value: int) None#
Associates a new integer value with
keyundergroup_name.If
keycannot be found then it is created.Added in version 2.26.
- Parameters:
group_name – a group name
key – a key
value – an integer value
- set_integer(group_name: str, key: str, value: int) None#
Associates a new integer value with
keyundergroup_name.If
keycannot be found then it is created.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
value – an integer value
- set_integer_list(group_name: str, key: str, list: list[int]) None#
Associates a list of integer values with
keyundergroup_name.If
keycannot be found then it is created.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
list – an array of integer values
- set_list_separator(separator: int) None#
Sets the character which is used to separate values in lists.
Typically
;or,are used as separators. The default list separator is;.Added in version 2.6.
- Parameters:
separator – the separator
- set_locale_string(group_name: str, key: str, locale: str, string: str) None#
Associates a string value for
keyandlocaleundergroup_name.If the translation for
keycannot be found then it is created.If
localeisCthen the untranslated value is set (since GLib 2.84).Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
locale – a locale identifier
string – a string
- set_locale_string_list(group_name: str, key: str, locale: str, list: list[str]) None#
Associates a list of string values for
keyandlocaleundergroup_name.If
localeisCthen the untranslated value is set (since GLib 2.84).If the translation for
keycannot be found then it is created.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
locale – a locale identifier
list – a
NULL-terminated array of locale string values
- set_string(group_name: str, key: str, string: str) None#
Associates a new string value with
keyundergroup_name.If
keycannot be found then it is created. Ifgroup_namecannot be found then it is created. Unlikeset_value, this function handles characters that need escaping, such as newlines.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
string – a string
- set_string_list(group_name: str, key: str, list: list[str]) None#
Associates a list of string values for
keyundergroup_name.If
keycannot be found then it is created. Ifgroup_namecannot be found then it is created.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
list – an array of string values
- set_uint64(group_name: str, key: str, value: int) None#
Associates a new integer value with
keyundergroup_name.If
keycannot be found then it is created.Added in version 2.26.
- Parameters:
group_name – a group name
key – a key
value – an integer value
- set_value(group_name: str, key: str, value: str) None#
Associates a new value with
keyundergroup_name.If
keycannot be found then it is created. Ifgroup_namecannot be found then it is created. To set an UTF-8 string which may contain characters that need escaping (such as newlines or spaces), useset_string.Added in version 2.6.
- Parameters:
group_name – a group name
key – a key
value – a string