ConfigMixin¶
-
class
tenjint.config.
ConfigMixin
[source]¶ Adds configuration options.
This class can be used to add configuration options for a specific object or plugin. It will automatically parse the config and will store the relevant parts of the config in the internal variable “_config_values”. The relevant part of the config is identified by a section name. The config section name can be specified in the class variable
tenjint.config.ConfigMixin._config_section
. If no section name is specified the name of the class will be used as default.Example
- _config_options = [
{“name”: “option_name1”, “default”: 1, “help”: “help description”}, {“name”: “option_name2”, “default”: “abc”, “help”: “help description”},
]
Notes
if _config_section is None, the class name will be used as a default.
Methods
Initialize self.