mirror of https://github.com/home-assistant/core
21 lines
419 B
Python
21 lines
419 B
Python
"""Constants for LastFM."""
|
|
|
|
import logging
|
|
from typing import Final
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
DOMAIN: Final = "lastfm"
|
|
PLATFORMS = [Platform.SENSOR]
|
|
DEFAULT_NAME = "LastFM"
|
|
|
|
CONF_MAIN_USER = "main_user"
|
|
CONF_USERS = "users"
|
|
|
|
ATTR_LAST_PLAYED = "last_played"
|
|
ATTR_PLAY_COUNT = "play_count"
|
|
ATTR_TOP_PLAYED = "top_played"
|
|
|
|
STATE_NOT_SCROBBLING = "Not Scrobbling"
|