screenlets.options.EditableOptions:
The EditableOptions can be inherited from to allow objects to
export editable options for editing them with the
OptionsEditor-class.
screenlets.install.ScreenletInstaller:
A simple utility to install screenlets into the current user's
directory (so either into $HOME/.screenlets/ for normal users or,
if run as root, into screenlets.INSTALL_PREFIX/share/screenlets/).
screenlets.backend.CachingBackend:
A backend that stores the settings in arrays and saves after a
short interval to avoid overhead when multiple values are set
within a short time.
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.
screenlets.ScreenletTheme:
ScreenletThemes are simple storages that allow loading files as
svg-handles within a theme-directory.