atoti.config.branding module

class atoti.config.branding.BrandingConfig(favicon=None, logo=None, title=None)

The UI elements to change in the app to replace the atoti branding with another one.

Note

This feature requires the atoti-plus plugin.

Example

>>> config = {
...     "branding": {
...         "favicon": "favicon.ico",
...         "logo": "../logo.svg",
...         "title": "Analytic App",
...     }
... }
favicon: Optional[Union[pathlib.Path, str]] = None

The file path to a .ico image that will be used as the favicon.

The file path to a 24px by 24px .svg image that will be displayed in the upper-left corner.

title: Optional[str] = None

The title to give to the browser tab (in the home page).