lories.core.configs.configurator#

Classes#

Configurator

Helper class that provides a standard way to create an ABC using

ConfiguratorMeta

Metaclass for defining Abstract Base Classes (ABCs).

Module Contents#

class lories.core.configs.configurator.Configurator(configs: lories._core._configurations.Configurations | None = None, logger: logging.Logger | None = None, **kwargs)[source]#

Bases: lories._core._configurator._Configurator

Inheritance diagram of lories.core.configs.configurator.Configurator

Helper class that provides a standard way to create an ABC using inheritance.

class lories.core.configs.configurator.ConfiguratorMeta[source]#

Bases: abc.ABCMeta

Inheritance diagram of lories.core.configs.configurator.ConfiguratorMeta

Metaclass for defining Abstract Base Classes (ABCs).

Use this metaclass to create an ABC. An ABC can be subclassed directly, and then acts as a mix-in class. You can also register unrelated concrete classes (even built-in classes) and unrelated ABCs as ‘virtual subclasses’ – these and their descendants will be considered subclasses of the registering ABC by the built-in issubclass() function, but the registering ABC won’t show up in their MRO (Method Resolution Order) nor will method implementations defined by the registering ABC be callable (not even via super()).