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

Functions

bool async_setup (HomeAssistant hass, ConfigType config)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
string CONF_START = "start"
 
string CONF_WAIT = "wait"
 
 CONFIG_SCHEMA
 
string DOMAIN = "debugpy"
 
string SERVICE_START = "start"
 

Detailed Description

The Remote Python Debugger integration.

Function Documentation

◆ async_setup()

bool homeassistant.components.debugpy.async_setup ( HomeAssistant  hass,
ConfigType  config 
)
Set up the Remote Python Debugger component.

Definition at line 40 of file __init__.py.

Variable Documentation

◆ _LOGGER

homeassistant.components.debugpy._LOGGER = logging.getLogger(__name__)
private

Definition at line 37 of file __init__.py.

◆ CONF_START

string homeassistant.components.debugpy.CONF_START = "start"

Definition at line 19 of file __init__.py.

◆ CONF_WAIT

string homeassistant.components.debugpy.CONF_WAIT = "wait"

Definition at line 20 of file __init__.py.

◆ CONFIG_SCHEMA

homeassistant.components.debugpy.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  DOMAIN: vol.Schema(
4  {
5  vol.Optional(CONF_HOST, default="0.0.0.0"): cv.string,
6  vol.Optional(CONF_PORT, default=5678): cv.port,
7  vol.Optional(CONF_START, default=True): cv.boolean,
8  vol.Optional(CONF_WAIT, default=False): cv.boolean,
9  }
10  )
11  },
12  extra=vol.ALLOW_EXTRA,
13 )

Definition at line 23 of file __init__.py.

◆ DOMAIN

string homeassistant.components.debugpy.DOMAIN = "debugpy"

Definition at line 18 of file __init__.py.

◆ SERVICE_START

string homeassistant.components.debugpy.SERVICE_START = "start"

Definition at line 21 of file __init__.py.