Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.feedreader Namespace Reference

Namespaces

 config_flow
 
 const
 
 coordinator
 
 event
 

Functions

None _async_update_listener (HomeAssistant hass, FeedReaderConfigEntry entry)
 
bool async_setup (HomeAssistant hass, ConfigType config)
 
bool async_setup_entry (HomeAssistant hass, FeedReaderConfigEntry entry)
 
bool async_unload_entry (HomeAssistant hass, FeedReaderConfigEntry entry)
 

Variables

string CONF_URLS = "urls"
 
 CONFIG_SCHEMA
 
 FeedReaderConfigEntry
 

Detailed Description

Support for RSS/Atom feeds.

Function Documentation

◆ _async_update_listener()

None homeassistant.components.feedreader._async_update_listener ( HomeAssistant  hass,
FeedReaderConfigEntry   entry 
)
private
Handle reconfiguration.

Definition at line 118 of file __init__.py.

◆ async_setup()

bool homeassistant.components.feedreader.async_setup ( HomeAssistant  hass,
ConfigType  config 
)
Set up the Feedreader component.

Definition at line 45 of file __init__.py.

◆ async_setup_entry()

bool homeassistant.components.feedreader.async_setup_entry ( HomeAssistant  hass,
FeedReaderConfigEntry  entry 
)
Set up Feedreader from a config entry.

Definition at line 79 of file __init__.py.

◆ async_unload_entry()

bool homeassistant.components.feedreader.async_unload_entry ( HomeAssistant  hass,
FeedReaderConfigEntry  entry 
)
Unload a config entry.

Definition at line 107 of file __init__.py.

Variable Documentation

◆ CONF_URLS

string homeassistant.components.feedreader.CONF_URLS = "urls"

Definition at line 20 of file __init__.py.

◆ CONFIG_SCHEMA

homeassistant.components.feedreader.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  vol.All(
3  cv.deprecated(DOMAIN),
4  {
5  DOMAIN: vol.Schema(
6  {
7  vol.Required(CONF_URLS): vol.All(cv.ensure_list, [cv.url]),
8  vol.Optional(
9  CONF_SCAN_INTERVAL, default=DEFAULT_SCAN_INTERVAL
10  ): cv.time_period,
11  vol.Optional(
12  CONF_MAX_ENTRIES, default=DEFAULT_MAX_ENTRIES
13  ): cv.positive_int,
14  }
15  )
16  },
17  ),
18  extra=vol.ALLOW_EXTRA,
19 )

Definition at line 24 of file __init__.py.

◆ FeedReaderConfigEntry

homeassistant.components.feedreader.FeedReaderConfigEntry

Definition at line 18 of file __init__.py.