Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for LastFM."""
2 
3 import logging
4 from typing import Final
5 
6 from homeassistant.const import Platform
7 
8 LOGGER = logging.getLogger(__package__)
9 DOMAIN: Final = "lastfm"
10 PLATFORMS = [Platform.SENSOR]
11 DEFAULT_NAME = "LastFM"
12 
13 CONF_MAIN_USER = "main_user"
14 CONF_USERS = "users"
15 
16 ATTR_LAST_PLAYED = "last_played"
17 ATTR_PLAY_COUNT = "play_count"
18 ATTR_TOP_PLAYED = "top_played"
19 
20 STATE_NOT_SCROBBLING = "Not Scrobbling"