Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.apprise.notify Namespace Reference

Classes

class  AppriseNotificationService
 

Functions

AppriseNotificationService|None get_service (HomeAssistant hass, ConfigType config, DiscoveryInfoType|None discovery_info=None)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
string CONF_FILE = "config"
 
 PLATFORM_SCHEMA
 

Detailed Description

Apprise platform for notify component.

Function Documentation

◆ get_service()

AppriseNotificationService | None homeassistant.components.apprise.notify.get_service ( HomeAssistant  hass,
ConfigType  config,
DiscoveryInfoType | None   discovery_info = None 
)
Get the Apprise notification service.

Definition at line 35 of file notify.py.

Variable Documentation

◆ _LOGGER

homeassistant.components.apprise.notify._LOGGER = logging.getLogger(__name__)
private

Definition at line 23 of file notify.py.

◆ CONF_FILE

string homeassistant.components.apprise.notify.CONF_FILE = "config"

Definition at line 25 of file notify.py.

◆ PLATFORM_SCHEMA

homeassistant.components.apprise.notify.PLATFORM_SCHEMA
Initial value:
1 = NOTIFY_PLATFORM_SCHEMA.extend(
2  {
3  vol.Optional(CONF_URL): vol.All(cv.ensure_list, [str]),
4  vol.Optional(CONF_FILE): cv.string,
5  }
6 )

Definition at line 27 of file notify.py.