Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.qbittorrent.config_flow Namespace Reference

Classes

class  QbittorrentConfigFlow
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 USER_DATA_SCHEMA
 

Detailed Description

Config flow for qBittorrent.

Variable Documentation

◆ _LOGGER

homeassistant.components.qbittorrent.config_flow._LOGGER = logging.getLogger(__name__)
private

Definition at line 17 of file config_flow.py.

◆ USER_DATA_SCHEMA

homeassistant.components.qbittorrent.config_flow.USER_DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_URL, default=DEFAULT_URL): str,
4  vol.Required(CONF_USERNAME): str,
5  vol.Required(CONF_PASSWORD): str,
6  vol.Optional(CONF_VERIFY_SSL, default=True): bool,
7  }
8 )

Definition at line 19 of file config_flow.py.