Configuration (Python)

Module that provides functions for accesssing the configuration of the currently running Katana session.

Configuration.get(key) → str

Returns the value of the configuration entry with the given key, or an empty string if no entry exists with the given key.

Configuration.has(key) → bool

Returns true if there is a configuration entry with the given key, otherwise false.

Configuration.set(key, value)

Sets the value of a configuration entry with the given key to the given value. Creates the configuration entry if no entry with the given key exists yet.