Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Mastodon integration."""
2 
3 import logging
4 from typing import Final
5 
6 LOGGER = logging.getLogger(__name__)
7 
8 DOMAIN: Final = "mastodon"
9 
10 CONF_BASE_URL: Final = "base_url"
11 DATA_HASS_CONFIG = "mastodon_hass_config"
12 DEFAULT_URL: Final = "https://mastodon.social"
13 DEFAULT_NAME: Final = "Mastodon"
14 
15 INSTANCE_VERSION: Final = "version"
16 INSTANCE_URI: Final = "uri"
17 INSTANCE_DOMAIN: Final = "domain"
18 ACCOUNT_USERNAME: Final = "username"
19 ACCOUNT_FOLLOWERS_COUNT: Final = "followers_count"
20 ACCOUNT_FOLLOWING_COUNT: Final = "following_count"
21 ACCOUNT_STATUSES_COUNT: Final = "statuses_count"