├── docs ├── build │ └── .empty └── screenshots.png ├── tests ├── testing_config │ ├── kira_codes.yaml │ ├── media │ │ ├── test.mp3 │ │ └── not_media.txt │ ├── .remember_the_milk.conf │ └── __init__.py ├── __init__.py ├── components │ ├── sma │ │ └── __init__.py │ ├── izone │ │ └── __init__.py │ ├── nws │ │ └── __init__.py │ ├── eafm │ │ └── __init__.py │ ├── mill │ │ └── __init__.py │ ├── tibber │ │ └── __init__.py │ ├── __init__.py │ ├── braviatv │ │ └── __init__.py │ ├── dunehd │ │ └── __init__.py │ ├── esphome │ │ └── __init__.py │ ├── fan │ │ └── __init__.py │ ├── glances │ │ └── __init__.py │ ├── iqvia │ │ └── __init__.py │ ├── lastfm │ │ └── __init__.py │ ├── lovelace │ │ └── __init__.py │ ├── stt │ │ └── __init__.py │ ├── tcp │ │ └── __init__.py │ ├── tod │ │ └── __init__.py │ ├── api │ │ └── __init__.py │ ├── apns │ │ └── __init__.py │ ├── aprs │ │ └── __init__.py │ ├── aws │ │ └── __init__.py │ ├── axis │ │ └── __init__.py │ ├── cast │ │ └── __init__.py │ ├── demo │ │ ├── __init__.py │ │ └── test_calendar.py │ ├── dsmr │ │ └── __init__.py │ ├── fido │ │ └── __init__.py │ ├── file │ │ └── __init__.py │ ├── flo │ │ └── __init__.py │ ├── flux │ │ └── __init__.py │ ├── heos │ │ └── __init__.py │ ├── hue │ │ └── __init__.py │ ├── ios │ │ └── __init__.py │ ├── ipma │ │ └── __init__.py │ ├── lock │ │ └── __init__.py │ ├── manual │ │ └── __init__.py │ ├── mfi │ │ └── __init__.py │ ├── moon │ │ └── __init__.py │ ├── mqtt │ │ └── __init__.py │ ├── myq │ │ └── __init__.py │ ├── nest │ │ └── __init__.py │ ├── nx584 │ │ └── __init__.py │ ├── ozw │ │ └── __init__.py │ ├── ping │ │ └── __init__.py │ ├── plex │ │ └── __init__.py │ ├── push │ │ └── __init__.py │ ├── random │ │ └── __init__.py │ ├── rest │ │ └── __init__.py │ ├── ring │ │ └── __init__.py │ ├── rpi_power │ │ └── __init__.py │ ├── scene │ │ └── __init__.py │ ├── slack │ │ └── __init__.py │ ├── smhi │ │ └── __init__.py │ ├── smtp │ │ └── __init__.py │ ├── soma │ │ └── __init__.py │ ├── spc │ │ └── __init__.py │ ├── sql │ │ └── __init__.py │ ├── sun │ │ └── __init__.py │ ├── tag │ │ └── __init__.py │ ├── toon │ │ └── __init__.py │ ├── trend │ │ └── __init__.py │ ├── tts │ │ └── __init__.py │ ├── tuya │ │ └── __init__.py │ ├── upb │ │ └── __init__.py │ ├── upnp │ │ └── __init__.py │ ├── uvc │ │ └── __init__.py │ ├── vera │ │ └── __init__.py │ ├── vesync │ │ └── __init__.py │ ├── wemo │ │ └── __init__.py │ ├── zha │ │ └── __init__.py │ ├── zone │ │ └── __init__.py │ ├── abode │ │ └── __init__.py │ ├── alert │ │ └── __init__.py │ ├── arlo │ │ └── __init__.py │ ├── august │ │ └── __init__.py │ ├── automation │ │ └── __init__.py │ ├── awair │ │ └── __init__.py │ ├── bayesian │ │ └── __init__.py │ ├── blebox │ │ └── __init__.py │ ├── blink │ │ └── __init__.py │ ├── bond │ │ └── __init__.py │ ├── caldav │ │ └── __init__.py │ ├── camera │ │ └── __init__.py │ ├── config │ │ └── __init__.py │ ├── cover │ │ └── __init__.py │ ├── daikin │ │ └── __init__.py │ ├── deconz │ │ └── __init__.py │ ├── dyson │ │ └── __init__.py │ ├── ecobee │ │ └── __init__.py │ ├── efergy │ │ └── __init__.py │ ├── emulated_hue │ │ └── __init__.py │ ├── emulated_kasa │ │ └── __init__.py │ ├── emulated_roku │ │ └── __init__.py │ ├── epson │ │ └── __init__.py │ ├── ffmpeg │ │ └── __init__.py │ ├── filter │ │ └── __init__.py │ ├── flume │ │ └── __init__.py │ ├── folder │ │ └── __init__.py │ ├── foobot │ │ └── __init__.py │ ├── group │ │ └── __init__.py │ ├── html5 │ │ └── __init__.py │ ├── icloud │ │ └── __init__.py │ ├── ifttt │ │ └── __init__.py │ ├── image │ │ └── __init__.py │ ├── kira │ │ └── __init__.py │ ├── light │ │ └── __init__.py │ ├── logger │ │ └── __init__.py │ ├── meraki │ │ └── __init__.py │ ├── mhz19 │ │ └── __init__.py │ ├── minio │ │ └── __init__.py │ ├── modbus │ │ └── __init__.py │ ├── neato │ │ └── __init__.py │ ├── nexia │ │ └── __init__.py │ ├── no_ip │ │ └── __init__.py │ ├── nuheat │ │ └── __init__.py │ ├── onvif │ │ └── __init__.py │ ├── openerz │ │ └── __init__.py │ ├── plant │ │ └── __init__.py │ ├── point │ │ └── __init__.py │ ├── radarr │ │ └── __init__.py │ ├── recorder │ │ └── __init__.py │ ├── remote │ │ └── __init__.py │ ├── rflink │ │ └── __init__.py │ ├── rfxtrx │ │ └── __init__.py │ ├── risco │ │ └── __init__.py │ ├── roon │ │ └── __init__.py │ ├── script │ │ └── __init__.py │ ├── season │ │ └── __init__.py │ ├── sense │ │ └── __init__.py │ ├── sensor │ │ └── __init__.py │ ├── sigfox │ │ └── __init__.py │ ├── snips │ │ └── __init__.py │ ├── somfy │ │ └── __init__.py │ ├── sonos │ │ └── __init__.py │ ├── spider │ │ └── __init__.py │ ├── ssdp │ │ └── __init__.py │ ├── statsd │ │ └── __init__.py │ ├── stream │ │ └── __init__.py │ ├── switch │ │ └── __init__.py │ ├── tado │ │ └── __init__.py │ ├── tasmota │ │ └── __init__.py │ ├── telegram │ │ └── __init__.py │ ├── template │ │ └── __init__.py │ ├── tesla │ │ └── __init__.py │ ├── timer │ │ └── __init__.py │ ├── tomato │ │ └── __init__.py │ ├── tplink │ │ └── __init__.py │ ├── transmission │ │ └── __init__.py │ ├── twilio │ │ └── __init__.py │ ├── twitch │ │ └── __init__.py │ ├── unifi │ │ └── __init__.py │ ├── uptime │ │ └── __init__.py │ ├── vacuum │ │ └── __init__.py │ ├── velbus │ │ └── __init__.py │ ├── vizio │ │ └── __init__.py │ ├── vultr │ │ └── __init__.py │ ├── wiffi │ │ └── __init__.py │ ├── wsdot │ │ └── __init__.py │ ├── xbox │ │ └── __init__.py │ ├── xiaomi │ │ └── __init__.py │ ├── yamaha │ │ └── __init__.py │ ├── zodiac │ │ └── __init__.py │ ├── zwave │ │ └── __init__.py │ ├── airnow │ │ └── __init__.py │ ├── almond │ │ └── __init__.py │ ├── androidtv │ │ └── __init__.py │ ├── apprise │ │ └── __init__.py │ ├── arcam_fmj │ │ └── __init__.py │ ├── asuswrt │ │ └── __init__.py │ ├── blackbird │ │ └── __init__.py │ ├── blueprint │ │ ├── test_init.py │ │ └── __init__.py │ ├── climate │ │ └── __init__.py │ ├── control4 │ │ └── __init__.py │ ├── counter │ │ └── __init__.py │ ├── darksky │ │ └── __init__.py │ ├── datadog │ │ └── __init__.py │ ├── denonavr │ │ └── __init__.py │ ├── discovery │ │ └── __init__.py │ ├── doorbird │ │ └── __init__.py │ ├── duckdns │ │ └── __init__.py │ ├── dynalite │ │ └── __init__.py │ ├── enocean │ │ └── __init__.py │ ├── facebook │ │ └── __init__.py │ ├── facebox │ │ └── __init__.py │ ├── fail2ban │ │ └── __init__.py │ ├── filesize │ │ └── __init__.py │ ├── firmata │ │ └── __init__.py │ ├── freebox │ │ └── __init__.py │ ├── freedns │ │ └── __init__.py │ ├── frontend │ │ └── __init__.py │ ├── generic │ │ └── __init__.py │ ├── geofency │ │ └── __init__.py │ ├── gogogate2 │ │ └── __init__.py │ ├── google │ │ └── __init__.py │ ├── gpslogger │ │ └── __init__.py │ ├── graphite │ │ └── __init__.py │ ├── gree │ │ └── __init__.py │ ├── hangouts │ │ └── __init__.py │ ├── hddtemp │ │ └── __init__.py │ ├── history │ │ └── __init__.py │ ├── homeassistant │ │ └── triggers │ │ │ └── __init__.py │ ├── homekit │ │ └── __init__.py │ ├── homematic │ │ └── __init__.py │ ├── honeywell │ │ └── __init__.py │ ├── iaqualink │ │ └── __init__.py │ ├── influxdb │ │ └── __init__.py │ ├── insteon │ │ └── __init__.py │ ├── intent │ │ └── __init__.py │ ├── juicenet │ │ └── __init__.py │ ├── konnected │ │ └── __init__.py │ ├── litejet │ │ └── __init__.py │ ├── local_ip │ │ └── __init__.py │ ├── locative │ │ └── __init__.py │ ├── logbook │ │ └── __init__.py │ ├── mailbox │ │ └── __init__.py │ ├── mailgun │ │ └── __init__.py │ ├── manual_mqtt │ │ └── __init__.py │ ├── marytts │ │ └── __init__.py │ ├── melcloud │ │ └── __init__.py │ ├── melissa │ │ └── __init__.py │ ├── min_max │ │ └── __init__.py │ ├── mochad │ │ └── __init__.py │ ├── monoprice │ │ └── __init__.py │ ├── mqtt_json │ │ └── __init__.py │ ├── mqtt_room │ │ └── __init__.py │ ├── netatmo │ │ └── __init__.py │ ├── nextbus │ │ └── __init__.py │ ├── notify │ │ └── __init__.py │ ├── numato │ │ └── __init__.py │ ├── number │ │ └── __init__.py │ ├── opnsense │ │ └── __init__.py │ ├── owntracks │ │ └── __init__.py │ ├── person │ │ └── __init__.py │ ├── pilight │ │ └── __init__.py │ ├── plugwise │ │ └── __init__.py │ ├── profiler │ │ └── __init__.py │ ├── proximity │ │ └── __init__.py │ ├── ps4 │ │ └── __init__.py │ ├── rachio │ │ └── __init__.py │ ├── reddit │ │ └── __init__.py │ ├── samsungtv │ │ └── __init__.py │ ├── search │ │ └── __init__.py │ ├── sentry │ │ └── __init__.py │ ├── sharkiq │ │ └── __init__.py │ ├── shelly │ │ └── __init__.py │ ├── simulated │ │ └── __init__.py │ ├── sleepiq │ │ └── __init__.py │ ├── smappee │ │ └── __init__.py │ ├── smarthab │ │ └── __init__.py │ ├── solaredge │ │ └── __init__.py │ ├── solarlog │ │ └── __init__.py │ ├── spaceapi │ │ └── __init__.py │ ├── spotify │ │ └── __init__.py │ ├── starline │ │ └── __init__.py │ ├── startca │ │ └── __init__.py │ ├── syncthru │ │ └── __init__.py │ ├── threshold │ │ └── __init__.py │ ├── tile │ │ └── __init__.py │ ├── time_date │ │ └── __init__.py │ ├── traccar │ │ └── __init__.py │ ├── universal │ │ └── __init__.py │ ├── upcloud │ │ └── __init__.py │ ├── updater │ │ └── __init__.py │ ├── verisure │ │ └── __init__.py │ ├── version │ │ └── __init__.py │ ├── volumio │ │ └── __init__.py │ ├── weather │ │ └── __init__.py │ ├── webhook │ │ └── __init__.py │ ├── webostv │ │ └── __init__.py │ ├── websocket_api │ │ └── __init__.py │ ├── withings │ │ └── __init__.py │ ├── zeroconf │ │ └── __init__.py │ ├── zerproc │ │ └── __init__.py │ ├── adguard │ │ └── __init__.py │ ├── air_quality │ │ └── __init__.py │ ├── ambiclimate │ │ └── __init__.py │ ├── apache_kafka │ │ └── __init__.py │ ├── api_streams │ │ └── __init__.py │ ├── aurora │ │ └── __init__.py │ ├── buienradar │ │ └── __init__.py │ ├── calendar │ │ └── __init__.py │ ├── cert_expiry │ │ └── __init__.py │ ├── command_line │ │ └── __init__.py │ ├── coolmaster │ │ └── __init__.py │ ├── derivative │ │ └── __init__.py │ ├── dialogflow │ │ └── __init__.py │ ├── elkm1 │ │ └── __init__.py │ ├── everlights │ │ └── __init__.py │ ├── feedreader │ │ └── __init__.py │ ├── google_pubsub │ │ └── __init__.py │ ├── google_wifi │ │ └── __init__.py │ ├── griddy │ │ └── __init__.py │ ├── huawei_lte │ │ └── __init__.py │ ├── humidifier │ │ └── __init__.py │ ├── input_text │ │ └── __init__.py │ ├── integration │ │ └── __init__.py │ ├── kulersky │ │ └── __init__.py │ ├── local_file │ │ └── __init__.py │ ├── logentries │ │ └── __init__.py │ ├── logi_circle │ │ └── __init__.py │ ├── london_air │ │ └── __init__.py │ ├── mobile_app │ │ └── __init__.py │ ├── ness_alarm │ │ └── __init__.py │ ├── notion │ │ └── __init__.py │ ├── omnilogic │ │ └── __init__.py │ ├── ondilo_ico │ │ └── __init__.py │ ├── openuv │ │ └── __init__.py │ ├── ovo_energy │ │ └── __init__.py │ ├── poolsense │ │ └── __init__.py │ ├── prometheus │ │ └── __init__.py │ ├── pushbullet │ │ └── __init__.py │ ├── qwikswitch │ │ └── __init__.py │ ├── roomba │ │ └── __init__.py │ ├── safe_mode │ │ └── __init__.py │ ├── sighthound │ │ └── __init__.py │ ├── smartthings │ │ └── __init__.py │ ├── soundtouch │ │ └── __init__.py │ ├── statistics │ │ └── __init__.py │ ├── system_log │ │ └── __init__.py │ ├── tellduslive │ │ └── __init__.py │ ├── utility_meter │ │ └── __init__.py │ ├── vilfo │ │ └── __init__.py │ ├── voicerss │ │ └── __init__.py │ ├── wake_on_lan │ │ └── __init__.py │ ├── worldclock │ │ └── __init__.py │ ├── yandextts │ │ └── __init__.py │ ├── airvisual │ │ └── __init__.py │ ├── alarmdecoder │ │ └── __init__.py │ ├── azure_devops │ │ └── __init__.py │ ├── azure_event_hub │ │ └── __init__.py │ ├── binary_sensor │ │ └── __init__.py │ ├── coinmarketcap │ │ └── __init__.py │ ├── configurator │ │ └── __init__.py │ ├── conversation │ │ └── __init__.py │ ├── coronavirus │ │ └── __init__.py │ ├── default_config │ │ └── __init__.py │ ├── device_tracker │ │ └── __init__.py │ ├── ee_brightbox │ │ └── __init__.py │ ├── flunearyou │ │ └── __init__.py │ ├── folder_watcher │ │ └── __init__.py │ ├── forked_daapd │ │ └── __init__.py │ ├── garmin_connect │ │ └── __init__.py │ ├── geo_location │ │ └── __init__.py │ ├── geo_rss_events │ │ └── __init__.py │ ├── google_domains │ │ └── __init__.py │ ├── guardian │ │ └── __init__.py │ ├── here_travel_time │ │ └── __init__.py │ ├── history_stats │ │ └── __init__.py │ ├── hlk_sw16 │ │ └── __init__.py │ ├── home_connect │ │ └── __init__.py │ ├── ign_sismologia │ │ └── __init__.py │ ├── input_boolean │ │ └── __init__.py │ ├── input_datetime │ │ └── __init__.py │ ├── input_number │ │ └── __init__.py │ ├── input_select │ │ └── __init__.py │ ├── intent_script │ │ └── __init__.py │ ├── luftdaten │ │ └── __init__.py │ ├── lutron_caseta │ │ └── __init__.py │ └── media_player │ │ └── __init__.py ├── fixtures │ ├── template │ │ └── empty_configuration.yaml │ ├── awair │ │ ├── awair-offline.json │ │ └── no_devices.json │ ├── plugwise │ │ ├── anna_heatpump │ │ │ └── notifications.json │ │ └── p1v3_full_option │ │ │ └── notifications.json │ └── powerwall │ │ └── device_type.json ├── hassfest │ └── __init__.py ├── scripts │ └── __init__.py ├── util │ ├── yaml │ │ └── __init__.py │ └── __init__.py ├── helpers │ └── __init__.py ├── auth │ ├── permissions │ │ └── __init__.py │ ├── providers │ │ └── __init__.py │ ├── __init__.py │ └── mfa_modules │ │ └── __init__.py └── test_util │ └── __init__.py ├── homeassistant ├── components │ ├── api │ │ └── services.yaml │ ├── apns │ │ ├── services.yaml │ │ └── __init__.py │ ├── flux │ │ ├── services.yaml │ │ └── __init__.py │ ├── alexa │ │ └── services.yaml │ ├── config │ │ └── services.yaml │ ├── onkyo │ │ ├── services.yaml │ │ └── __init__.py │ ├── configurator │ │ └── services.yaml │ ├── emulated_hue │ │ └── services.yaml │ ├── joaoapps_join │ │ └── services.yaml │ ├── mobile_app │ │ └── services.yaml │ ├── rest_command │ │ └── services.yaml │ ├── websocket_api │ │ └── services.yaml │ ├── device_sun_light_trigger │ │ └── services.yaml │ ├── scene │ │ ├── strings.json │ │ └── translations │ │ │ ├── no.json │ │ │ ├── bs.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── fi.json │ │ │ ├── hr.json │ │ │ ├── is.json │ │ │ ├── it.json │ │ │ ├── lb.json │ │ │ ├── nb.json │ │ │ ├── nn.json │ │ │ ├── pl.json │ │ │ ├── pt.json │ │ │ ├── sl.json │ │ │ ├── af.json │ │ │ ├── ca.json │ │ │ ├── cs.json │ │ │ ├── cy.json │ │ │ ├── es-419.json │ │ │ ├── es.json │ │ │ ├── et.json │ │ │ ├── eu.json │ │ │ ├── fr.json │ │ │ ├── gsw.json │ │ │ ├── hu.json │ │ │ ├── id.json │ │ │ ├── ko.json │ │ │ ├── nl.json │ │ │ ├── pt-BR.json │ │ │ ├── ro.json │ │ │ ├── sk.json │ │ │ ├── sv.json │ │ │ ├── tr.json │ │ │ └── lv.json │ ├── yi │ │ └── __init__.py │ ├── ampio │ │ └── __init__.py │ ├── aprs │ │ └── __init__.py │ ├── arest │ │ └── __init__.py │ ├── aruba │ │ └── __init__.py │ ├── arwn │ │ └── __init__.py │ ├── avea │ │ └── __init__.py │ ├── avion │ │ └── __init__.py │ ├── bbox │ │ └── __init__.py │ ├── brunt │ │ └── __init__.py │ ├── cmus │ │ └── __init__.py │ ├── cups │ │ └── __init__.py │ ├── ddwrt │ │ └── __init__.py │ ├── denon │ │ └── __init__.py │ ├── dht │ │ └── __init__.py │ ├── dlink │ │ └── __init__.py │ ├── dnsip │ │ └── __init__.py │ ├── doods │ │ └── __init__.py │ ├── ebox │ │ └── __init__.py │ ├── edl21 │ │ └── __init__.py │ ├── emby │ │ └── __init__.py │ ├── fido │ │ └── __init__.py │ ├── file │ │ └── __init__.py │ ├── fints │ │ └── __init__.py │ ├── fixer │ │ └── __init__.py │ ├── flic │ │ └── __init__.py │ ├── flock │ │ └── __init__.py │ ├── fritz │ │ └── __init__.py │ ├── gntp │ │ └── __init__.py │ ├── gpmdp │ │ └── __init__.py │ ├── gpsd │ │ └── __init__.py │ ├── gtfs │ │ └── __init__.py │ ├── html5 │ │ └── __init__.py │ ├── iglo │ │ └── __init__.py │ ├── imap │ │ └── __init__.py │ ├── iss │ │ └── __init__.py │ ├── kiwi │ │ └── __init__.py │ ├── kwb │ │ └── __init__.py │ ├── luci │ │ └── __init__.py │ ├── lyft │ │ └── __init__.py │ ├── mailbox │ │ ├── strings.json │ │ └── translations │ │ │ ├── af.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── et.json │ │ │ ├── it.json │ │ │ ├── nl.json │ │ │ ├── pl.json │ │ │ ├── ca.json │ │ │ ├── cy.json │ │ │ ├── da.json │ │ │ ├── es.json │ │ │ ├── eu.json │ │ │ ├── fi.json │ │ │ ├── id.json │ │ │ ├── nb.json │ │ │ ├── nn.json │ │ │ ├── no.json │ │ │ ├── sv.json │ │ │ └── tr.json │ ├── mfi │ │ └── __init__.py │ ├── mhz19 │ │ └── __init__.py │ ├── mjpeg │ │ └── __init__.py │ ├── moon │ │ └── __init__.py │ ├── mpchc │ │ └── __init__.py │ ├── mpd │ │ └── __init__.py │ ├── nad │ │ └── __init__.py │ ├── nello │ │ └── __init__.py │ ├── netio │ │ └── __init__.py │ ├── nextbus │ │ └── __init__.py │ ├── nilu │ │ └── __init__.py │ ├── nmbs │ │ └── __init__.py │ ├── oem │ │ └── __init__.py │ ├── opple │ │ └── __init__.py │ ├── otp │ │ └── __init__.py │ ├── prowl │ │ └── __init__.py │ ├── proxy │ │ └── __init__.py │ ├── push │ │ └── __init__.py │ ├── qnap │ │ └── __init__.py │ ├── reddit │ │ └── __init__.py │ ├── rova │ │ └── __init__.py │ ├── saj │ │ └── __init__.py │ ├── sht31 │ │ └── __init__.py │ ├── slack │ │ └── __init__.py │ ├── sma │ │ └── __init__.py │ ├── snmp │ │ └── __init__.py │ ├── solax │ │ └── __init__.py │ ├── sql │ │ └── __init__.py │ ├── tcp │ │ └── __init__.py │ ├── tfiac │ │ └── __init__.py │ ├── tod │ │ └── __init__.py │ ├── ubus │ │ └── __init__.py │ ├── updater │ │ ├── strings.json │ │ └── translations │ │ │ ├── bs.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── et.json │ │ │ ├── gsw.json │ │ │ ├── id.json │ │ │ ├── nb.json │ │ │ ├── nl.json │ │ │ ├── ro.json │ │ │ ├── te.json │ │ │ ├── af.json │ │ │ ├── ca.json │ │ │ ├── cy.json │ │ │ ├── es.json │ │ │ ├── fi.json │ │ │ ├── it.json │ │ │ ├── nn.json │ │ │ ├── no.json │ │ │ ├── pl.json │ │ │ ├── pt.json │ │ │ └── sv.json │ ├── uscis │ │ └── __init__.py │ ├── uvc │ │ └── __init__.py │ ├── vlc │ │ └── __init__.py │ ├── waqi │ │ └── __init__.py │ ├── whois │ │ └── __init__.py │ ├── wsdot │ │ └── __init__.py │ ├── x10 │ │ └── __init__.py │ ├── xeoma │ │ └── __init__.py │ ├── xmpp │ │ └── __init__.py │ ├── zamg │ │ └── __init__.py │ ├── apprise │ │ └── __init__.py │ ├── aquostv │ │ └── __init__.py │ ├── aten_pe │ │ └── __init__.py │ ├── bh1750 │ │ └── __init__.py │ ├── bitcoin │ │ └── __init__.py │ ├── blinkt │ │ └── __init__.py │ ├── bme280 │ │ └── __init__.py │ ├── bme680 │ │ └── __init__.py │ ├── caldav │ │ └── __init__.py │ ├── darksky │ │ └── __init__.py │ ├── decora │ │ └── __init__.py │ ├── delijn │ │ └── __init__.py │ ├── deluge │ │ └── __init__.py │ ├── discogs │ │ └── __init__.py │ ├── econet │ │ └── __init__.py │ ├── edimax │ │ └── __init__.py │ ├── efergy │ │ └── __init__.py │ ├── emoncms │ │ └── __init__.py │ ├── essent │ │ └── __init__.py │ ├── facebox │ │ └── __init__.py │ ├── fitbit │ │ └── __init__.py │ ├── fleetgo │ │ └── __init__.py │ ├── flexit │ │ └── __init__.py │ ├── folder │ │ └── __init__.py │ ├── foobot │ │ └── __init__.py │ ├── foscam │ │ └── __init__.py │ ├── fronius │ │ └── __init__.py │ ├── github │ │ └── __init__.py │ ├── gitter │ │ └── __init__.py │ ├── hddtemp │ │ └── __init__.py │ ├── horizon │ │ └── __init__.py │ ├── htu21d │ │ └── __init__.py │ ├── input_text │ │ ├── strings.json │ │ └── translations │ │ │ ├── en.json │ │ │ ├── id.json │ │ │ ├── lb.json │ │ │ └── nb.json │ ├── itunes │ │ └── __init__.py │ ├── kankun │ │ └── __init__.py │ ├── lastfm │ │ └── __init__.py │ ├── manual │ │ └── __init__.py │ ├── meraki │ │ └── __init__.py │ ├── miflora │ │ └── __init__.py │ ├── mvglive │ │ └── __init__.py │ ├── mystrom │ │ └── __init__.py │ ├── netdata │ │ └── __init__.py │ ├── netgear │ │ └── __init__.py │ ├── notify │ │ ├── strings.json │ │ └── translations │ │ │ ├── bs.json │ │ │ ├── cy.json │ │ │ ├── fi.json │ │ │ ├── is.json │ │ │ ├── it.json │ │ │ ├── nb.json │ │ │ ├── nn.json │ │ │ ├── no.json │ │ │ ├── pt.json │ │ │ ├── ro.json │ │ │ ├── sl.json │ │ │ ├── sv.json │ │ │ ├── tr.json │ │ │ ├── af.json │ │ │ ├── ca.json │ │ │ ├── da.json │ │ │ ├── en.json │ │ │ ├── es-419.json │ │ │ ├── es.json │ │ │ ├── et.json │ │ │ ├── eu.json │ │ │ ├── fr.json │ │ │ ├── hr.json │ │ │ ├── id.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── lb.json │ │ │ ├── lv.json │ │ │ ├── nl.json │ │ │ ├── pl.json │ │ │ └── sk.json │ ├── obihai │ │ └── __init__.py │ ├── opencv │ │ └── __init__.py │ ├── opensky │ │ └── __init__.py │ ├── orvibo │ │ └── __init__.py │ ├── pandora │ │ └── __init__.py │ ├── pencom │ │ └── __init__.py │ ├── piglow │ │ └── __init__.py │ ├── pioneer │ │ └── __init__.py │ ├── pjlink │ │ └── __init__.py │ ├── pyload │ │ └── __init__.py │ ├── qrcode │ │ └── __init__.py │ ├── radarr │ │ └── __init__.py │ ├── random │ │ └── __init__.py │ ├── ripple │ │ └── __init__.py │ ├── rpi_rf │ │ └── __init__.py │ ├── scrape │ │ └── __init__.py │ ├── season │ │ └── __init__.py │ ├── sensibo │ │ └── __init__.py │ ├── serial │ │ └── __init__.py │ ├── sesame │ │ └── __init__.py │ ├── shodan │ │ └── __init__.py │ ├── sigfox │ │ └── __init__.py │ ├── sochain │ │ └── __init__.py │ ├── startca │ │ └── __init__.py │ ├── syslog │ │ └── __init__.py │ ├── tag │ │ ├── strings.json │ │ └── translations │ │ │ ├── no.json │ │ │ ├── ca.json │ │ │ ├── en.json │ │ │ ├── fr.json │ │ │ ├── lb.json │ │ │ ├── pl.json │ │ │ ├── ru.json │ │ │ ├── cs.json │ │ │ ├── es.json │ │ │ ├── et.json │ │ │ ├── it.json │ │ │ ├── ko.json │ │ │ ├── pt-BR.json │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ ├── tapsaff │ │ └── __init__.py │ ├── ted5000 │ │ └── __init__.py │ ├── telnet │ │ └── __init__.py │ ├── temper │ │ └── __init__.py │ ├── thomson │ │ └── __init__.py │ ├── tikteck │ │ └── __init__.py │ ├── todoist │ │ └── __init__.py │ ├── tomato │ │ └── __init__.py │ ├── torque │ │ └── __init__.py │ ├── trackr │ │ └── __init__.py │ ├── twitch │ │ └── __init__.py │ ├── twitter │ │ └── __init__.py │ ├── uptime │ │ └── __init__.py │ ├── venstar │ │ └── __init__.py │ ├── vlc_telnet │ │ └── __init__.py │ ├── xfinity │ │ └── __init__.py │ ├── xiaomi │ │ └── __init__.py │ ├── yamaha │ │ └── __init__.py │ ├── zengge │ │ └── __init__.py │ ├── actiontec │ │ └── __init__.py │ ├── aftership │ │ └── __init__.py │ ├── anthemav │ │ └── __init__.py │ ├── baidu │ │ └── __init__.py │ ├── blackbird │ │ └── __init__.py │ ├── blockchain │ │ └── __init__.py │ ├── bluesound │ │ └── __init__.py │ ├── buienradar │ │ └── __init__.py │ ├── channels │ │ └── __init__.py │ ├── cisco_ios │ │ └── __init__.py │ ├── citybikes │ │ └── __init__.py │ ├── clementine │ │ └── __init__.py │ ├── clickatell │ │ └── __init__.py │ ├── clicksend │ │ └── __init__.py │ ├── co2signal │ │ └── __init__.py │ ├── concord232 │ │ └── __init__.py │ ├── conversation │ │ ├── strings.json │ │ └── translations │ │ │ ├── bs.json │ │ │ ├── ca.json │ │ │ ├── cy.json │ │ │ ├── da.json │ │ │ ├── et.json │ │ │ ├── hr.json │ │ │ ├── is.json │ │ │ ├── lv.json │ │ │ ├── nb.json │ │ │ ├── nn.json │ │ │ ├── no.json │ │ │ ├── pl.json │ │ │ ├── pt.json │ │ │ ├── sl.json │ │ │ └── sv.json │ ├── cpuspeed │ │ └── __init__.py │ ├── derivative │ │ └── __init__.py │ ├── discord │ │ └── __init__.py │ ├── dlna_dmr │ │ └── __init__.py │ ├── eliqonline │ │ └── __init__.py │ ├── enigma2 │ │ └── __init__.py │ ├── envirophat │ │ └── __init__.py │ ├── ephember │ │ └── __init__.py │ ├── eq3btsmart │ │ └── __init__.py │ ├── etherscan │ │ └── __init__.py │ ├── everlights │ │ └── __init__.py │ ├── facebook │ │ └── __init__.py │ ├── fail2ban │ │ └── __init__.py │ ├── familyhub │ │ └── __init__.py │ ├── flux_led │ │ └── __init__.py │ ├── fortios │ │ └── __init__.py │ ├── futurenow │ │ └── __init__.py │ ├── garadget │ │ └── __init__.py │ ├── geizhals │ │ └── __init__.py │ ├── gitlab_ci │ │ └── __init__.py │ ├── greenwave │ │ └── __init__.py │ ├── gstreamer │ │ └── __init__.py │ ├── hassio │ │ └── translations │ │ │ ├── nb.json │ │ │ ├── af.json │ │ │ ├── bg.json │ │ │ ├── cy.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── el.json │ │ │ ├── eu.json │ │ │ ├── fa.json │ │ │ ├── fi.json │ │ │ ├── fr.json │ │ │ ├── he.json │ │ │ ├── hr.json │ │ │ ├── hy.json │ │ │ ├── is.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── lt.json │ │ │ ├── lv.json │ │ │ ├── nn.json │ │ │ ├── ro.json │ │ │ ├── sk.json │ │ │ ├── sv.json │ │ │ ├── th.json │ │ │ ├── uk.json │ │ │ ├── vi.json │ │ │ ├── es-419.json │ │ │ └── pt-BR.json │ ├── heatmiser │ │ └── __init__.py │ ├── hikvision │ │ └── __init__.py │ ├── input_number │ │ └── strings.json │ ├── input_select │ │ ├── strings.json │ │ └── translations │ │ │ ├── fi.json │ │ │ └── pt.json │ ├── intesishome │ │ └── __init__.py │ ├── itach │ │ └── __init__.py │ ├── lacrosse │ │ └── __init__.py │ ├── lannouncer │ │ └── __init__.py │ ├── lg_netcast │ │ └── __init__.py │ ├── lifx_cloud │ │ └── __init__.py │ ├── local_file │ │ └── __init__.py │ ├── london_air │ │ └── __init__.py │ ├── loopenergy │ │ └── __init__.py │ ├── lw12wifi │ │ └── __init__.py │ ├── mastodon │ │ └── __init__.py │ ├── mediaroom │ │ └── __init__.py │ ├── meteoalarm │ │ └── __init__.py │ ├── mitemp_bt │ │ └── __init__.py │ ├── mqtt_json │ │ └── __init__.py │ ├── mqtt_room │ │ └── __init__.py │ ├── nanoleaf │ │ └── __init__.py │ ├── noaa_tides │ │ └── __init__.py │ ├── norway_air │ │ └── __init__.py │ ├── ohmconnect │ │ └── __init__.py │ ├── openevse │ │ └── __init__.py │ ├── opengarage │ │ └── __init__.py │ ├── openhome │ │ └── __init__.py │ ├── philips_js │ │ └── __init__.py │ ├── proliphix │ │ └── __init__.py │ ├── pushbullet │ │ └── __init__.py │ ├── pushover │ │ └── __init__.py │ ├── pushsafer │ │ └── __init__.py │ ├── pvoutput │ │ └── __init__.py │ ├── radiotherm │ │ └── __init__.py │ ├── raspyrfm │ │ └── __init__.py │ ├── recswitch │ │ └── __init__.py │ ├── rocketchat │ │ └── __init__.py │ ├── rtorrent │ │ └── __init__.py │ ├── sendgrid │ │ └── __init__.py │ ├── sensehat │ │ └── __init__.py │ ├── serial_pm │ │ └── __init__.py │ ├── simplepush │ │ └── __init__.py │ ├── simulated │ │ └── __init__.py │ ├── skybeacon │ │ └── __init__.py │ ├── snapcast │ │ └── __init__.py │ ├── soundtouch │ │ └── __init__.py │ ├── spotcrime │ │ └── __init__.py │ ├── stookalert │ │ └── __init__.py │ ├── swisscom │ │ └── __init__.py │ ├── switchbot │ │ └── __init__.py │ ├── switchmate │ │ └── __init__.py │ ├── synology │ │ └── __init__.py │ ├── tautulli │ │ └── __init__.py │ ├── tensorflow │ │ └── __init__.py │ ├── threshold │ │ └── __init__.py │ ├── time_date │ │ └── __init__.py │ ├── touchline │ │ └── __init__.py │ ├── travisci │ │ └── __init__.py │ ├── twilio_sms │ │ └── __init__.py │ ├── universal │ │ └── __init__.py │ ├── vasttrafik │ │ └── __init__.py │ ├── version │ │ └── __init__.py │ ├── worldclock │ │ └── __init__.py │ ├── xbox_live │ │ └── __init__.py │ ├── xiaomi_tv │ │ └── __init__.py │ ├── zestimate │ │ └── __init__.py │ ├── zhong_hong │ │ └── __init__.py │ ├── anel_pwrctrl │ │ └── __init__.py │ ├── asterisk_cdr │ │ └── __init__.py │ ├── bt_smarthub │ │ └── __init__.py │ ├── crimereports │ │ └── __init__.py │ ├── decora_wifi │ │ └── __init__.py │ ├── dsmr_reader │ │ └── __init__.py │ ├── ee_brightbox │ │ └── __init__.py │ ├── ffmpeg_noise │ │ └── __init__.py │ ├── free_mobile │ │ └── __init__.py │ ├── google_cloud │ │ └── __init__.py │ ├── google_maps │ │ └── __init__.py │ ├── google_wifi │ │ └── __init__.py │ ├── hikvisioncam │ │ └── __init__.py │ ├── hitron_coda │ │ └── __init__.py │ ├── iammeter │ │ └── __init__.py │ ├── input_datetime │ │ └── strings.json │ ├── integration │ │ └── __init__.py │ ├── kef │ │ └── __init__.py │ ├── lg_soundbar │ │ └── __init__.py │ ├── lifx_legacy │ │ └── __init__.py │ ├── limitlessled │ │ └── __init__.py │ ├── lock │ │ └── translations │ │ │ └── eu.json │ ├── magicseaweed │ │ └── __init__.py │ ├── manual_mqtt │ │ └── __init__.py │ ├── marytts │ │ └── __init__.py │ ├── message_bird │ │ └── __init__.py │ ├── msteams │ │ └── __init__.py │ ├── nfandroidtv │ │ └── __init__.py │ ├── nmap_tracker │ │ └── __init__.py │ ├── opensensemap │ │ └── __init__.py │ ├── picotts │ │ └── __init__.py │ ├── pocketcasts │ │ └── __init__.py │ ├── proximity │ │ ├── strings.json │ │ └── translations │ │ │ ├── lv.json │ │ │ ├── af.json │ │ │ ├── bs.json │ │ │ ├── ca.json │ │ │ ├── cy.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── eu.json │ │ │ ├── hr.json │ │ │ ├── id.json │ │ │ ├── nb.json │ │ │ ├── nl.json │ │ │ ├── no.json │ │ │ ├── pt.json │ │ │ ├── ro.json │ │ │ └── sv.json │ ├── qbittorrent │ │ └── __init__.py │ ├── qld_bushfire │ │ └── __init__.py │ ├── rejseplanen │ │ └── __init__.py │ ├── rmvtransport │ │ └── __init__.py │ ├── rpi_gpio_pwm │ │ └── __init__.py │ ├── russound_rio │ │ └── __init__.py │ ├── sighthound │ │ └── __init__.py │ ├── socialblade │ │ └── __init__.py │ ├── starlingbank │ │ └── __init__.py │ ├── steam_online │ │ └── __init__.py │ ├── suez_water │ │ └── __init__.py │ ├── supervisord │ │ └── __init__.py │ ├── synology_srm │ │ └── __init__.py │ ├── system_health │ │ └── strings.json │ ├── tank_utility │ │ └── __init__.py │ ├── twilio_call │ │ └── __init__.py │ ├── uk_transport │ │ └── __init__.py │ ├── unifi_direct │ │ └── __init__.py │ ├── unifiled │ │ └── __init__.py │ ├── upc_connect │ │ └── __init__.py │ ├── uptimerobot │ │ └── __init__.py │ ├── viaggiatreno │ │ └── __init__.py │ ├── vivotek │ │ └── __init__.py │ ├── volkszaehler │ │ └── __init__.py │ ├── worxlandroid │ │ └── __init__.py │ ├── wunderground │ │ └── __init__.py │ ├── acer_projector │ │ └── __init__.py │ ├── aladdin_connect │ │ └── __init__.py │ ├── alpha_vantage │ │ └── __init__.py │ ├── arris_tg2492lg │ │ └── __init__.py │ ├── beewi_smartclim │ │ └── __init__.py │ ├── bizkaibus │ │ └── __init__.py │ ├── blinksticklight │ │ └── __init__.py │ ├── bmp280 │ │ └── __init__.py │ ├── bt_home_hub_5 │ │ └── __init__.py │ ├── clicksend_tts │ │ └── __init__.py │ ├── coinmarketcap │ │ └── __init__.py │ ├── currencylayer │ │ └── __init__.py │ ├── demo │ │ └── translations │ │ │ └── ja.json │ ├── deutsche_bahn │ │ └── __init__.py │ ├── digitalloggers │ │ └── __init__.py │ ├── enphase_envoy │ │ └── __init__.py │ ├── epsonworkforce │ │ └── __init__.py │ ├── ffmpeg_motion │ │ └── __init__.py │ ├── geo_json_events │ │ └── __init__.py │ ├── geo_rss_events │ │ └── __init__.py │ ├── haveibeenpwned │ │ └── __init__.py │ ├── huawei_router │ │ └── __init__.py │ ├── ifttt │ │ └── const.py │ ├── ign_sismologia │ │ └── __init__.py │ ├── image_processing │ │ └── strings.json │ ├── keenetic_ndms2 │ │ └── __init__.py │ ├── launch_library │ │ └── __init__.py │ ├── lifx │ │ └── const.py │ ├── linksys_smart │ │ └── __init__.py │ ├── linux_battery │ │ └── __init__.py │ ├── microsoft │ │ └── __init__.py │ ├── modem_callerid │ │ └── __init__.py │ ├── neurio_energy │ │ └── __init__.py │ ├── nx584 │ │ └── __init__.py │ ├── oasa_telematics │ │ └── __init__.py │ ├── openalpr_cloud │ │ └── __init__.py │ ├── openalpr_local │ │ └── __init__.py │ ├── osramlightify │ │ └── __init__.py │ ├── quantum_gateway │ │ └── __init__.py │ ├── russound_rnet │ │ └── __init__.py │ ├── seven_segments │ │ └── __init__.py │ ├── seventeentrack │ │ └── __init__.py │ ├── sony_projector │ │ └── __init__.py │ ├── synology_chat │ │ └── __init__.py │ ├── systemmonitor │ │ └── __init__.py │ ├── transport_nsw │ │ └── __init__.py │ ├── ue_smart_radio │ │ └── __init__.py │ ├── voicerss │ │ └── __init__.py │ └── worldtidesinfo │ │ └── __init__.py └── __init__.py ├── script ├── __init__.py ├── hassfest │ └── __init__.py ├── scaffold │ └── __init__.py └── translations │ └── __init__.py └── .hadolint.yaml /docs/build/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testing_config/kira_codes.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testing_config/media/test.mp3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeassistant/components/api/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeassistant/components/apns/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeassistant/components/flux/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testing_config/media/not_media.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeassistant/components/alexa/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeassistant/components/config/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeassistant/components/onkyo/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeassistant/components/configurator/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeassistant/components/emulated_hue/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeassistant/components/joaoapps_join/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeassistant/components/mobile_app/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeassistant/components/rest_command/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homeassistant/components/websocket_api/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /script/__init__.py: -------------------------------------------------------------------------------- 1 | """Home Assistant scripts.""" 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Home Assistant.""" 2 | -------------------------------------------------------------------------------- /tests/components/sma/__init__.py: -------------------------------------------------------------------------------- 1 | """SMA tests.""" 2 | -------------------------------------------------------------------------------- /tests/fixtures/template/empty_configuration.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /script/hassfest/__init__.py: -------------------------------------------------------------------------------- 1 | """Manifest validator.""" 2 | -------------------------------------------------------------------------------- /tests/components/izone/__init__.py: -------------------------------------------------------------------------------- 1 | """IZone tests.""" 2 | -------------------------------------------------------------------------------- /tests/components/nws/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for NWS.""" 2 | -------------------------------------------------------------------------------- /tests/fixtures/awair/awair-offline.json: -------------------------------------------------------------------------------- 1 | {"data":[]} 2 | -------------------------------------------------------------------------------- /tests/fixtures/awair/no_devices.json: -------------------------------------------------------------------------------- 1 | {"devices":[]} 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugwise/anna_heatpump/notifications.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/hassfest/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for hassfest.""" 2 | -------------------------------------------------------------------------------- /tests/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the scripts.""" 2 | -------------------------------------------------------------------------------- /tests/util/yaml/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for YAML util.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/device_sun_light_trigger/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /script/scaffold/__init__.py: -------------------------------------------------------------------------------- 1 | """Scaffold new integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/eafm/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for eafm.""" 2 | -------------------------------------------------------------------------------- /tests/components/mill/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Mill.""" 2 | -------------------------------------------------------------------------------- /tests/components/tibber/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Tibber.""" 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugwise/p1v3_full_option/notifications.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for the helpers.""" 2 | -------------------------------------------------------------------------------- /tests/util/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for the utilities.""" 2 | -------------------------------------------------------------------------------- /homeassistant/__init__.py: -------------------------------------------------------------------------------- 1 | """Init file for Home Assistant.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/scene/strings.json: -------------------------------------------------------------------------------- 1 | { "title": "Scene" } 2 | -------------------------------------------------------------------------------- /homeassistant/components/yi/__init__.py: -------------------------------------------------------------------------------- 1 | """The yi component.""" 2 | -------------------------------------------------------------------------------- /tests/auth/permissions/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for permissions.""" 2 | -------------------------------------------------------------------------------- /tests/components/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for components.""" 2 | -------------------------------------------------------------------------------- /tests/components/braviatv/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Bravia TV.""" 2 | -------------------------------------------------------------------------------- /tests/components/dunehd/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Dune HD.""" 2 | -------------------------------------------------------------------------------- /tests/components/esphome/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for esphome.""" 2 | -------------------------------------------------------------------------------- /tests/components/fan/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for fan platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/glances/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Glances.""" 2 | -------------------------------------------------------------------------------- /tests/components/iqvia/__init__.py: -------------------------------------------------------------------------------- 1 | """Define tests for IQVIA.""" 2 | -------------------------------------------------------------------------------- /tests/components/lastfm/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for lastfm.""" 2 | -------------------------------------------------------------------------------- /tests/components/lovelace/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Lovelace.""" 2 | -------------------------------------------------------------------------------- /tests/components/stt/__init__.py: -------------------------------------------------------------------------------- 1 | """Speech to text tests.""" 2 | -------------------------------------------------------------------------------- /tests/components/tcp/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for tcp component.""" 2 | -------------------------------------------------------------------------------- /tests/components/tod/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for tod component.""" 2 | -------------------------------------------------------------------------------- /tests/fixtures/powerwall/device_type.json: -------------------------------------------------------------------------------- 1 | {"device_type":"hec"} 2 | -------------------------------------------------------------------------------- /tests/test_util/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the test utilities.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ampio/__init__.py: -------------------------------------------------------------------------------- 1 | """The Ampio component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/apns/__init__.py: -------------------------------------------------------------------------------- 1 | """The apns component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/aprs/__init__.py: -------------------------------------------------------------------------------- 1 | """The APRS component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/arest/__init__.py: -------------------------------------------------------------------------------- 1 | """The arest component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/aruba/__init__.py: -------------------------------------------------------------------------------- 1 | """The aruba component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/arwn/__init__.py: -------------------------------------------------------------------------------- 1 | """The arwn component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/avea/__init__.py: -------------------------------------------------------------------------------- 1 | """The avea component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/avion/__init__.py: -------------------------------------------------------------------------------- 1 | """The avion component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/bbox/__init__.py: -------------------------------------------------------------------------------- 1 | """The bbox component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/brunt/__init__.py: -------------------------------------------------------------------------------- 1 | """The brunt component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/cmus/__init__.py: -------------------------------------------------------------------------------- 1 | """The cmus component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/cups/__init__.py: -------------------------------------------------------------------------------- 1 | """The cups component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ddwrt/__init__.py: -------------------------------------------------------------------------------- 1 | """The ddwrt component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/denon/__init__.py: -------------------------------------------------------------------------------- 1 | """The denon component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/dht/__init__.py: -------------------------------------------------------------------------------- 1 | """The dht component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/dlink/__init__.py: -------------------------------------------------------------------------------- 1 | """The dlink component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/dnsip/__init__.py: -------------------------------------------------------------------------------- 1 | """The dnsip component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/doods/__init__.py: -------------------------------------------------------------------------------- 1 | """The doods component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ebox/__init__.py: -------------------------------------------------------------------------------- 1 | """The ebox component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/edl21/__init__.py: -------------------------------------------------------------------------------- 1 | """The edl21 component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/emby/__init__.py: -------------------------------------------------------------------------------- 1 | """The emby component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/fido/__init__.py: -------------------------------------------------------------------------------- 1 | """The fido component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/file/__init__.py: -------------------------------------------------------------------------------- 1 | """The file component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/fints/__init__.py: -------------------------------------------------------------------------------- 1 | """The fints component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/fixer/__init__.py: -------------------------------------------------------------------------------- 1 | """The fixer component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/flic/__init__.py: -------------------------------------------------------------------------------- 1 | """The flic component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/flock/__init__.py: -------------------------------------------------------------------------------- 1 | """The flock component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/flux/__init__.py: -------------------------------------------------------------------------------- 1 | """The flux component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/fritz/__init__.py: -------------------------------------------------------------------------------- 1 | """The fritz component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/gntp/__init__.py: -------------------------------------------------------------------------------- 1 | """The gntp component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/gpmdp/__init__.py: -------------------------------------------------------------------------------- 1 | """The gpmdp component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/gpsd/__init__.py: -------------------------------------------------------------------------------- 1 | """The gpsd component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/gtfs/__init__.py: -------------------------------------------------------------------------------- 1 | """The gtfs component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/html5/__init__.py: -------------------------------------------------------------------------------- 1 | """The html5 component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/iglo/__init__.py: -------------------------------------------------------------------------------- 1 | """The iglo component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/imap/__init__.py: -------------------------------------------------------------------------------- 1 | """The imap component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/iss/__init__.py: -------------------------------------------------------------------------------- 1 | """The iss component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/kiwi/__init__.py: -------------------------------------------------------------------------------- 1 | """The kiwi component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/kwb/__init__.py: -------------------------------------------------------------------------------- 1 | """The kwb component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/luci/__init__.py: -------------------------------------------------------------------------------- 1 | """The luci component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/lyft/__init__.py: -------------------------------------------------------------------------------- 1 | """The lyft component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mailbox/strings.json: -------------------------------------------------------------------------------- 1 | { "title": "Mailbox" } 2 | -------------------------------------------------------------------------------- /homeassistant/components/mfi/__init__.py: -------------------------------------------------------------------------------- 1 | """The mfi component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mhz19/__init__.py: -------------------------------------------------------------------------------- 1 | """The mhz19 component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mjpeg/__init__.py: -------------------------------------------------------------------------------- 1 | """The mjpeg component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/moon/__init__.py: -------------------------------------------------------------------------------- 1 | """The moon component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mpchc/__init__.py: -------------------------------------------------------------------------------- 1 | """The mpchc component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mpd/__init__.py: -------------------------------------------------------------------------------- 1 | """The mpd component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/nad/__init__.py: -------------------------------------------------------------------------------- 1 | """The nad component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/nello/__init__.py: -------------------------------------------------------------------------------- 1 | """The nello component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/netio/__init__.py: -------------------------------------------------------------------------------- 1 | """The netio component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/nextbus/__init__.py: -------------------------------------------------------------------------------- 1 | """NextBus sensor.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/nilu/__init__.py: -------------------------------------------------------------------------------- 1 | """The nilu component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/nmbs/__init__.py: -------------------------------------------------------------------------------- 1 | """The nmbs component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/oem/__init__.py: -------------------------------------------------------------------------------- 1 | """The oem component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/onkyo/__init__.py: -------------------------------------------------------------------------------- 1 | """The onkyo component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/opple/__init__.py: -------------------------------------------------------------------------------- 1 | """The opple component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/otp/__init__.py: -------------------------------------------------------------------------------- 1 | """The otp component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/prowl/__init__.py: -------------------------------------------------------------------------------- 1 | """The prowl component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/proxy/__init__.py: -------------------------------------------------------------------------------- 1 | """The proxy component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/push/__init__.py: -------------------------------------------------------------------------------- 1 | """The push component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/qnap/__init__.py: -------------------------------------------------------------------------------- 1 | """The qnap component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/reddit/__init__.py: -------------------------------------------------------------------------------- 1 | """Reddit Component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/rova/__init__.py: -------------------------------------------------------------------------------- 1 | """The rova component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/saj/__init__.py: -------------------------------------------------------------------------------- 1 | """The saj component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/sht31/__init__.py: -------------------------------------------------------------------------------- 1 | """The sht31 component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/slack/__init__.py: -------------------------------------------------------------------------------- 1 | """The slack component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/sma/__init__.py: -------------------------------------------------------------------------------- 1 | """The sma component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/snmp/__init__.py: -------------------------------------------------------------------------------- 1 | """The snmp component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/solax/__init__.py: -------------------------------------------------------------------------------- 1 | """The solax component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/sql/__init__.py: -------------------------------------------------------------------------------- 1 | """The sql component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/tcp/__init__.py: -------------------------------------------------------------------------------- 1 | """The tcp component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/tfiac/__init__.py: -------------------------------------------------------------------------------- 1 | """The tfiac component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/tod/__init__.py: -------------------------------------------------------------------------------- 1 | """The tod component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ubus/__init__.py: -------------------------------------------------------------------------------- 1 | """The ubus component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/updater/strings.json: -------------------------------------------------------------------------------- 1 | { "title": "Updater" } 2 | -------------------------------------------------------------------------------- /homeassistant/components/uscis/__init__.py: -------------------------------------------------------------------------------- 1 | """The uscis component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/uvc/__init__.py: -------------------------------------------------------------------------------- 1 | """The uvc component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/vlc/__init__.py: -------------------------------------------------------------------------------- 1 | """The vlc component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/waqi/__init__.py: -------------------------------------------------------------------------------- 1 | """The waqi component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/whois/__init__.py: -------------------------------------------------------------------------------- 1 | """The whois component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/wsdot/__init__.py: -------------------------------------------------------------------------------- 1 | """The wsdot component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/x10/__init__.py: -------------------------------------------------------------------------------- 1 | """The x10 component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/xeoma/__init__.py: -------------------------------------------------------------------------------- 1 | """The xeoma component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/xmpp/__init__.py: -------------------------------------------------------------------------------- 1 | """The xmpp component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/zamg/__init__.py: -------------------------------------------------------------------------------- 1 | """The zamg component.""" 2 | -------------------------------------------------------------------------------- /script/translations/__init__.py: -------------------------------------------------------------------------------- 1 | """Translation helper scripts.""" 2 | -------------------------------------------------------------------------------- /tests/auth/providers/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the auth providers.""" 2 | -------------------------------------------------------------------------------- /tests/components/api/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the api component.""" 2 | -------------------------------------------------------------------------------- /tests/components/apns/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the apns component.""" 2 | -------------------------------------------------------------------------------- /tests/components/aprs/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the APRS component.""" 2 | -------------------------------------------------------------------------------- /tests/components/aws/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the aws component.""" 2 | -------------------------------------------------------------------------------- /tests/components/axis/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Axis component.""" 2 | -------------------------------------------------------------------------------- /tests/components/cast/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Cast component.""" 2 | -------------------------------------------------------------------------------- /tests/components/demo/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the demo component.""" 2 | -------------------------------------------------------------------------------- /tests/components/dsmr/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the dsmr component.""" 2 | -------------------------------------------------------------------------------- /tests/components/fido/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the fido component.""" 2 | -------------------------------------------------------------------------------- /tests/components/file/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the file component.""" 2 | -------------------------------------------------------------------------------- /tests/components/flo/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the flo integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/flux/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the flux component.""" 2 | -------------------------------------------------------------------------------- /tests/components/heos/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Heos component.""" 2 | -------------------------------------------------------------------------------- /tests/components/hue/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Hue component.""" 2 | -------------------------------------------------------------------------------- /tests/components/ios/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the iOS component.""" 2 | -------------------------------------------------------------------------------- /tests/components/ipma/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the IPMA component.""" 2 | -------------------------------------------------------------------------------- /tests/components/lock/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Lock platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/manual/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for manual component.""" 2 | -------------------------------------------------------------------------------- /tests/components/mfi/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the mfi component.""" 2 | -------------------------------------------------------------------------------- /tests/components/moon/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the moon component.""" 2 | -------------------------------------------------------------------------------- /tests/components/mqtt/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for MQTT component.""" 2 | -------------------------------------------------------------------------------- /tests/components/myq/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the MyQ integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/nest/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Nest component.""" 2 | -------------------------------------------------------------------------------- /tests/components/nx584/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for nx584 component.""" 2 | -------------------------------------------------------------------------------- /tests/components/ozw/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the OZW integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/ping/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for ping component.""" 2 | -------------------------------------------------------------------------------- /tests/components/plex/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Plex component.""" 2 | -------------------------------------------------------------------------------- /tests/components/push/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the push component.""" 2 | -------------------------------------------------------------------------------- /tests/components/random/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for random component.""" 2 | -------------------------------------------------------------------------------- /tests/components/rest/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for rest component.""" 2 | -------------------------------------------------------------------------------- /tests/components/ring/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the ring component.""" 2 | -------------------------------------------------------------------------------- /tests/components/rpi_power/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for rpi_power.""" 2 | -------------------------------------------------------------------------------- /tests/components/scene/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for scene component.""" 2 | -------------------------------------------------------------------------------- /tests/components/slack/__init__.py: -------------------------------------------------------------------------------- 1 | """Slack notification tests.""" 2 | -------------------------------------------------------------------------------- /tests/components/smhi/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the SMHI component.""" 2 | -------------------------------------------------------------------------------- /tests/components/smtp/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the smtp component.""" 2 | -------------------------------------------------------------------------------- /tests/components/soma/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Soma component.""" 2 | -------------------------------------------------------------------------------- /tests/components/spc/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the spc component.""" 2 | -------------------------------------------------------------------------------- /tests/components/sql/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the sql component.""" 2 | -------------------------------------------------------------------------------- /tests/components/sun/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the sun component.""" 2 | -------------------------------------------------------------------------------- /tests/components/tag/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Tag integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/toon/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Toon component.""" 2 | -------------------------------------------------------------------------------- /tests/components/trend/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for trend component.""" 2 | -------------------------------------------------------------------------------- /tests/components/tts/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for tts platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/tuya/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Tuya component.""" 2 | -------------------------------------------------------------------------------- /tests/components/upb/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the UPB integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/upnp/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the IGD component.""" 2 | -------------------------------------------------------------------------------- /tests/components/uvc/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the uvc component.""" 2 | -------------------------------------------------------------------------------- /tests/components/vera/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Vera component.""" 2 | -------------------------------------------------------------------------------- /tests/components/vesync/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for VeSync Component.""" 2 | -------------------------------------------------------------------------------- /tests/components/wemo/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the wemo component.""" 2 | -------------------------------------------------------------------------------- /tests/components/zha/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the ZHA component.""" 2 | -------------------------------------------------------------------------------- /tests/components/zone/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the zone component.""" 2 | -------------------------------------------------------------------------------- /tests/testing_config/.remember_the_milk.conf: -------------------------------------------------------------------------------- 1 | {"myprofile": {"id_map": {}}} -------------------------------------------------------------------------------- /homeassistant/components/apprise/__init__.py: -------------------------------------------------------------------------------- 1 | """The apprise component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/aquostv/__init__.py: -------------------------------------------------------------------------------- 1 | """The aquostv component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/aten_pe/__init__.py: -------------------------------------------------------------------------------- 1 | """The ATEN PE component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/bh1750/__init__.py: -------------------------------------------------------------------------------- 1 | """The bh1750 component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/bitcoin/__init__.py: -------------------------------------------------------------------------------- 1 | """The bitcoin component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/blinkt/__init__.py: -------------------------------------------------------------------------------- 1 | """The blinkt component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/bme280/__init__.py: -------------------------------------------------------------------------------- 1 | """The bme280 component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/bme680/__init__.py: -------------------------------------------------------------------------------- 1 | """The bme680 component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/caldav/__init__.py: -------------------------------------------------------------------------------- 1 | """The caldav component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/darksky/__init__.py: -------------------------------------------------------------------------------- 1 | """The darksky component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/decora/__init__.py: -------------------------------------------------------------------------------- 1 | """The decora component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/delijn/__init__.py: -------------------------------------------------------------------------------- 1 | """The delijn component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/deluge/__init__.py: -------------------------------------------------------------------------------- 1 | """The deluge component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/discogs/__init__.py: -------------------------------------------------------------------------------- 1 | """The discogs component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/econet/__init__.py: -------------------------------------------------------------------------------- 1 | """The econet component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/edimax/__init__.py: -------------------------------------------------------------------------------- 1 | """The edimax component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/efergy/__init__.py: -------------------------------------------------------------------------------- 1 | """The efergy component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/emoncms/__init__.py: -------------------------------------------------------------------------------- 1 | """The emoncms component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/essent/__init__.py: -------------------------------------------------------------------------------- 1 | """The Essent component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/facebox/__init__.py: -------------------------------------------------------------------------------- 1 | """The facebox component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/fitbit/__init__.py: -------------------------------------------------------------------------------- 1 | """The fitbit component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/fleetgo/__init__.py: -------------------------------------------------------------------------------- 1 | """The FleetGO component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/flexit/__init__.py: -------------------------------------------------------------------------------- 1 | """The flexit component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/folder/__init__.py: -------------------------------------------------------------------------------- 1 | """The folder component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/foobot/__init__.py: -------------------------------------------------------------------------------- 1 | """The foobot component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/foscam/__init__.py: -------------------------------------------------------------------------------- 1 | """The foscam component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/fronius/__init__.py: -------------------------------------------------------------------------------- 1 | """The Fronius component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/github/__init__.py: -------------------------------------------------------------------------------- 1 | """The github component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/gitter/__init__.py: -------------------------------------------------------------------------------- 1 | """The gitter component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/hddtemp/__init__.py: -------------------------------------------------------------------------------- 1 | """The hddtemp component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/horizon/__init__.py: -------------------------------------------------------------------------------- 1 | """The horizon component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/htu21d/__init__.py: -------------------------------------------------------------------------------- 1 | """The htu21d component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/input_text/strings.json: -------------------------------------------------------------------------------- 1 | { "title": "Input text" } 2 | -------------------------------------------------------------------------------- /homeassistant/components/itunes/__init__.py: -------------------------------------------------------------------------------- 1 | """The itunes component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/kankun/__init__.py: -------------------------------------------------------------------------------- 1 | """The kankun component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/lastfm/__init__.py: -------------------------------------------------------------------------------- 1 | """The lastfm component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/manual/__init__.py: -------------------------------------------------------------------------------- 1 | """The manual component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/meraki/__init__.py: -------------------------------------------------------------------------------- 1 | """The meraki component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/miflora/__init__.py: -------------------------------------------------------------------------------- 1 | """The miflora component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mvglive/__init__.py: -------------------------------------------------------------------------------- 1 | """The mvglive component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mystrom/__init__.py: -------------------------------------------------------------------------------- 1 | """The mystrom component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/netdata/__init__.py: -------------------------------------------------------------------------------- 1 | """The netdata component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/netgear/__init__.py: -------------------------------------------------------------------------------- 1 | """The netgear component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/notify/strings.json: -------------------------------------------------------------------------------- 1 | { "title": "Notifications" } 2 | -------------------------------------------------------------------------------- /homeassistant/components/obihai/__init__.py: -------------------------------------------------------------------------------- 1 | """The Obihai integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/opencv/__init__.py: -------------------------------------------------------------------------------- 1 | """The opencv component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/opensky/__init__.py: -------------------------------------------------------------------------------- 1 | """The opensky component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/orvibo/__init__.py: -------------------------------------------------------------------------------- 1 | """The orvibo component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/pandora/__init__.py: -------------------------------------------------------------------------------- 1 | """The pandora component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/pencom/__init__.py: -------------------------------------------------------------------------------- 1 | """The pencom component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/piglow/__init__.py: -------------------------------------------------------------------------------- 1 | """The piglow component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/pioneer/__init__.py: -------------------------------------------------------------------------------- 1 | """The pioneer component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/pjlink/__init__.py: -------------------------------------------------------------------------------- 1 | """The pjlink component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/pyload/__init__.py: -------------------------------------------------------------------------------- 1 | """The pyload component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/qrcode/__init__.py: -------------------------------------------------------------------------------- 1 | """The QR code component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/radarr/__init__.py: -------------------------------------------------------------------------------- 1 | """The radarr component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/random/__init__.py: -------------------------------------------------------------------------------- 1 | """The random component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ripple/__init__.py: -------------------------------------------------------------------------------- 1 | """The ripple component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/rpi_rf/__init__.py: -------------------------------------------------------------------------------- 1 | """The rpi_rf component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/no.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scrape/__init__.py: -------------------------------------------------------------------------------- 1 | """The scrape component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/season/__init__.py: -------------------------------------------------------------------------------- 1 | """The season component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/sensibo/__init__.py: -------------------------------------------------------------------------------- 1 | """The sensibo component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/serial/__init__.py: -------------------------------------------------------------------------------- 1 | """The serial component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/sesame/__init__.py: -------------------------------------------------------------------------------- 1 | """The sesame component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/shodan/__init__.py: -------------------------------------------------------------------------------- 1 | """The shodan component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/sigfox/__init__.py: -------------------------------------------------------------------------------- 1 | """The sigfox component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/sochain/__init__.py: -------------------------------------------------------------------------------- 1 | """The sochain component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/startca/__init__.py: -------------------------------------------------------------------------------- 1 | """The startca component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/syslog/__init__.py: -------------------------------------------------------------------------------- 1 | """The syslog component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/tag/strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Tag" 3 | } 4 | -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/no.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tapsaff/__init__.py: -------------------------------------------------------------------------------- 1 | """The tapsaff component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ted5000/__init__.py: -------------------------------------------------------------------------------- 1 | """The ted5000 component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/telnet/__init__.py: -------------------------------------------------------------------------------- 1 | """The telnet component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/temper/__init__.py: -------------------------------------------------------------------------------- 1 | """The temper component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/thomson/__init__.py: -------------------------------------------------------------------------------- 1 | """The thomson component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/tikteck/__init__.py: -------------------------------------------------------------------------------- 1 | """The tikteck component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/todoist/__init__.py: -------------------------------------------------------------------------------- 1 | """The todoist component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/tomato/__init__.py: -------------------------------------------------------------------------------- 1 | """The tomato component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/torque/__init__.py: -------------------------------------------------------------------------------- 1 | """The torque component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/trackr/__init__.py: -------------------------------------------------------------------------------- 1 | """The trackr component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/twitch/__init__.py: -------------------------------------------------------------------------------- 1 | """The twitch component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/twitter/__init__.py: -------------------------------------------------------------------------------- 1 | """The twitter component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/uptime/__init__.py: -------------------------------------------------------------------------------- 1 | """The uptime component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/venstar/__init__.py: -------------------------------------------------------------------------------- 1 | """The venstar component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/vlc_telnet/__init__.py: -------------------------------------------------------------------------------- 1 | """The vlc component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/xfinity/__init__.py: -------------------------------------------------------------------------------- 1 | """The xfinity component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/xiaomi/__init__.py: -------------------------------------------------------------------------------- 1 | """The xiaomi component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/yamaha/__init__.py: -------------------------------------------------------------------------------- 1 | """The yamaha component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/zengge/__init__.py: -------------------------------------------------------------------------------- 1 | """The zengge component.""" 2 | -------------------------------------------------------------------------------- /tests/auth/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Home Assistant auth module.""" 2 | -------------------------------------------------------------------------------- /tests/components/abode/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Abode component.""" 2 | -------------------------------------------------------------------------------- /tests/components/alert/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the alert component.""" 2 | -------------------------------------------------------------------------------- /tests/components/arlo/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Arlo integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/august/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the august component.""" 2 | -------------------------------------------------------------------------------- /tests/components/automation/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Automation.""" 2 | -------------------------------------------------------------------------------- /tests/components/awair/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the awair component.""" 2 | -------------------------------------------------------------------------------- /tests/components/bayesian/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for bayesian component.""" 2 | -------------------------------------------------------------------------------- /tests/components/blebox/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the blebox component.""" 2 | -------------------------------------------------------------------------------- /tests/components/blink/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Blink component.""" 2 | -------------------------------------------------------------------------------- /tests/components/bond/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Bond integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/caldav/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the caldav component.""" 2 | -------------------------------------------------------------------------------- /tests/components/camera/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for camera platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/config/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the config component.""" 2 | -------------------------------------------------------------------------------- /tests/components/cover/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the cover component.""" 2 | -------------------------------------------------------------------------------- /tests/components/daikin/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Daikin component.""" 2 | -------------------------------------------------------------------------------- /tests/components/deconz/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the deCONZ component.""" 2 | -------------------------------------------------------------------------------- /tests/components/dyson/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the dyson component.""" 2 | -------------------------------------------------------------------------------- /tests/components/ecobee/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Ecobee integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/efergy/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the efergy component.""" 2 | -------------------------------------------------------------------------------- /tests/components/emulated_hue/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for emulated_hue.""" 2 | -------------------------------------------------------------------------------- /tests/components/emulated_kasa/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for emulated_kasa.""" 2 | -------------------------------------------------------------------------------- /tests/components/emulated_roku/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for emulated_roku.""" 2 | -------------------------------------------------------------------------------- /tests/components/epson/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the epson integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/ffmpeg/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the ffmpeg component.""" 2 | -------------------------------------------------------------------------------- /tests/components/filter/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the filter component.""" 2 | -------------------------------------------------------------------------------- /tests/components/flume/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the flume integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/folder/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the folder component.""" 2 | -------------------------------------------------------------------------------- /tests/components/foobot/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the foobot component.""" 2 | -------------------------------------------------------------------------------- /tests/components/group/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the group component.""" 2 | -------------------------------------------------------------------------------- /tests/components/html5/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the html5 component.""" 2 | -------------------------------------------------------------------------------- /tests/components/icloud/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the iCloud component.""" 2 | -------------------------------------------------------------------------------- /tests/components/ifttt/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the IFTTT component.""" 2 | -------------------------------------------------------------------------------- /tests/components/image/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Image integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/kira/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Kira integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/light/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Light platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/logger/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the logger component.""" 2 | -------------------------------------------------------------------------------- /tests/components/meraki/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the meraki component.""" 2 | -------------------------------------------------------------------------------- /tests/components/mhz19/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the mhz19 component.""" 2 | -------------------------------------------------------------------------------- /tests/components/minio/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the minio component.""" 2 | -------------------------------------------------------------------------------- /tests/components/modbus/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Modbus platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/neato/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Neato component.""" 2 | -------------------------------------------------------------------------------- /tests/components/nexia/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Nexia integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/no_ip/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the no_ip component.""" 2 | -------------------------------------------------------------------------------- /tests/components/nuheat/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the nuheat component.""" 2 | -------------------------------------------------------------------------------- /tests/components/onvif/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the ONVIF integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/openerz/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for OpenERZ component.""" 2 | -------------------------------------------------------------------------------- /tests/components/plant/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the plant component.""" 2 | -------------------------------------------------------------------------------- /tests/components/point/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Point component.""" 2 | -------------------------------------------------------------------------------- /tests/components/radarr/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the radarr component.""" 2 | -------------------------------------------------------------------------------- /tests/components/recorder/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Recorder component.""" 2 | -------------------------------------------------------------------------------- /tests/components/remote/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Remote platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/rflink/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the rflink component.""" 2 | -------------------------------------------------------------------------------- /tests/components/rfxtrx/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the rfxtrx component.""" 2 | -------------------------------------------------------------------------------- /tests/components/risco/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Risco integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/roon/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the roon integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/script/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the script component.""" 2 | -------------------------------------------------------------------------------- /tests/components/season/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the season component.""" 2 | -------------------------------------------------------------------------------- /tests/components/sense/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Sense integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/sensor/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Sensor platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/sigfox/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the sigfox component.""" 2 | -------------------------------------------------------------------------------- /tests/components/snips/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the snips component.""" 2 | -------------------------------------------------------------------------------- /tests/components/somfy/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Somfy component.""" 2 | -------------------------------------------------------------------------------- /tests/components/sonos/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Sonos component.""" 2 | -------------------------------------------------------------------------------- /tests/components/spider/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Spider component.""" 2 | -------------------------------------------------------------------------------- /tests/components/ssdp/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the SSDP integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/statsd/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the statsd component.""" 2 | -------------------------------------------------------------------------------- /tests/components/stream/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for stream platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/switch/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Switch platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/tado/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the tado integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/tasmota/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Tasmota component.""" 2 | -------------------------------------------------------------------------------- /tests/components/telegram/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for telegram component.""" 2 | -------------------------------------------------------------------------------- /tests/components/template/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for template component.""" 2 | -------------------------------------------------------------------------------- /tests/components/tesla/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Tesla integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/timer/__init__.py: -------------------------------------------------------------------------------- 1 | """Test env for timer component.""" 2 | -------------------------------------------------------------------------------- /tests/components/tomato/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the tomato component.""" 2 | -------------------------------------------------------------------------------- /tests/components/tplink/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the TP-Link component.""" 2 | -------------------------------------------------------------------------------- /tests/components/transmission/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Transmission.""" 2 | -------------------------------------------------------------------------------- /tests/components/twilio/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Twilio component.""" 2 | -------------------------------------------------------------------------------- /tests/components/twitch/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Twitch component.""" 2 | -------------------------------------------------------------------------------- /tests/components/unifi/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the UniFi component.""" 2 | -------------------------------------------------------------------------------- /tests/components/uptime/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the uptime component.""" 2 | -------------------------------------------------------------------------------- /tests/components/vacuum/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for vacuum platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/velbus/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Velbus component.""" 2 | -------------------------------------------------------------------------------- /tests/components/vizio/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Vizio integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/vultr/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the vultr component.""" 2 | -------------------------------------------------------------------------------- /tests/components/wiffi/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the wiffi integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/wsdot/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the wsdot component.""" 2 | -------------------------------------------------------------------------------- /tests/components/xbox/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the xbox integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/xiaomi/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the xiaomi component.""" 2 | -------------------------------------------------------------------------------- /tests/components/yamaha/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the yamaha component.""" 2 | -------------------------------------------------------------------------------- /tests/components/zodiac/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the zodiac component.""" 2 | -------------------------------------------------------------------------------- /tests/components/zwave/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Z-Wave component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/actiontec/__init__.py: -------------------------------------------------------------------------------- 1 | """The actiontec component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/aftership/__init__.py: -------------------------------------------------------------------------------- 1 | """The aftership component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/anthemav/__init__.py: -------------------------------------------------------------------------------- 1 | """The anthemav component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/baidu/__init__.py: -------------------------------------------------------------------------------- 1 | """Support for Baidu integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/blackbird/__init__.py: -------------------------------------------------------------------------------- 1 | """The blackbird component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/blockchain/__init__.py: -------------------------------------------------------------------------------- 1 | """The blockchain component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/bluesound/__init__.py: -------------------------------------------------------------------------------- 1 | """The bluesound component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/buienradar/__init__.py: -------------------------------------------------------------------------------- 1 | """The buienradar component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/channels/__init__.py: -------------------------------------------------------------------------------- 1 | """The channels component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/cisco_ios/__init__.py: -------------------------------------------------------------------------------- 1 | """The cisco_ios component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/citybikes/__init__.py: -------------------------------------------------------------------------------- 1 | """The citybikes component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/clementine/__init__.py: -------------------------------------------------------------------------------- 1 | """The clementine component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/clickatell/__init__.py: -------------------------------------------------------------------------------- 1 | """The clickatell component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/clicksend/__init__.py: -------------------------------------------------------------------------------- 1 | """The clicksend component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/co2signal/__init__.py: -------------------------------------------------------------------------------- 1 | """The co2signal component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/concord232/__init__.py: -------------------------------------------------------------------------------- 1 | """The concord232 component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/conversation/strings.json: -------------------------------------------------------------------------------- 1 | { "title": "Conversation" } 2 | -------------------------------------------------------------------------------- /homeassistant/components/cpuspeed/__init__.py: -------------------------------------------------------------------------------- 1 | """The cpuspeed component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/derivative/__init__.py: -------------------------------------------------------------------------------- 1 | """The derivative component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/discord/__init__.py: -------------------------------------------------------------------------------- 1 | """The discord integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/dlna_dmr/__init__.py: -------------------------------------------------------------------------------- 1 | """The dlna_dmr component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/eliqonline/__init__.py: -------------------------------------------------------------------------------- 1 | """The eliqonline component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/enigma2/__init__.py: -------------------------------------------------------------------------------- 1 | """Support for Enigma2 devices.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/envirophat/__init__.py: -------------------------------------------------------------------------------- 1 | """The envirophat component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ephember/__init__.py: -------------------------------------------------------------------------------- 1 | """The ephember component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/eq3btsmart/__init__.py: -------------------------------------------------------------------------------- 1 | """The eq3btsmart component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/etherscan/__init__.py: -------------------------------------------------------------------------------- 1 | """The etherscan component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/everlights/__init__.py: -------------------------------------------------------------------------------- 1 | """The everlights component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/facebook/__init__.py: -------------------------------------------------------------------------------- 1 | """The facebook component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/fail2ban/__init__.py: -------------------------------------------------------------------------------- 1 | """The fail2ban component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/familyhub/__init__.py: -------------------------------------------------------------------------------- 1 | """The familyhub component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/flux_led/__init__.py: -------------------------------------------------------------------------------- 1 | """The flux_led component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/fortios/__init__.py: -------------------------------------------------------------------------------- 1 | """Fortinet FortiOS components.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/futurenow/__init__.py: -------------------------------------------------------------------------------- 1 | """The futurenow component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/garadget/__init__.py: -------------------------------------------------------------------------------- 1 | """The garadget component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/geizhals/__init__.py: -------------------------------------------------------------------------------- 1 | """The geizhals component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/gitlab_ci/__init__.py: -------------------------------------------------------------------------------- 1 | """The gitlab_ci component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/greenwave/__init__.py: -------------------------------------------------------------------------------- 1 | """The greenwave component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/gstreamer/__init__.py: -------------------------------------------------------------------------------- 1 | """The gstreamer component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/heatmiser/__init__.py: -------------------------------------------------------------------------------- 1 | """The heatmiser component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/hikvision/__init__.py: -------------------------------------------------------------------------------- 1 | """The hikvision component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/input_number/strings.json: -------------------------------------------------------------------------------- 1 | { "title": "Input number" } 2 | -------------------------------------------------------------------------------- /homeassistant/components/input_select/strings.json: -------------------------------------------------------------------------------- 1 | { "title": "Input select" } 2 | -------------------------------------------------------------------------------- /homeassistant/components/intesishome/__init__.py: -------------------------------------------------------------------------------- 1 | """Intesishome platform.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/itach/__init__.py: -------------------------------------------------------------------------------- 1 | """Support for itach devices.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/lacrosse/__init__.py: -------------------------------------------------------------------------------- 1 | """The lacrosse component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/lannouncer/__init__.py: -------------------------------------------------------------------------------- 1 | """The lannouncer component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/lg_netcast/__init__.py: -------------------------------------------------------------------------------- 1 | """The lg_netcast component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/lifx_cloud/__init__.py: -------------------------------------------------------------------------------- 1 | """The lifx_cloud component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/local_file/__init__.py: -------------------------------------------------------------------------------- 1 | """The local_file component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/london_air/__init__.py: -------------------------------------------------------------------------------- 1 | """The london_air component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/loopenergy/__init__.py: -------------------------------------------------------------------------------- 1 | """The loopenergy component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/lw12wifi/__init__.py: -------------------------------------------------------------------------------- 1 | """The lw12wifi component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mastodon/__init__.py: -------------------------------------------------------------------------------- 1 | """The mastodon component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mediaroom/__init__.py: -------------------------------------------------------------------------------- 1 | """The mediaroom component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/meteoalarm/__init__.py: -------------------------------------------------------------------------------- 1 | """The meteoalarm component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mitemp_bt/__init__.py: -------------------------------------------------------------------------------- 1 | """The mitemp_bt component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mqtt_json/__init__.py: -------------------------------------------------------------------------------- 1 | """The mqtt_json component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mqtt_room/__init__.py: -------------------------------------------------------------------------------- 1 | """The mqtt_room component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/nanoleaf/__init__.py: -------------------------------------------------------------------------------- 1 | """The nanoleaf component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/noaa_tides/__init__.py: -------------------------------------------------------------------------------- 1 | """The noaa_tides component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/norway_air/__init__.py: -------------------------------------------------------------------------------- 1 | """The norway_air component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ohmconnect/__init__.py: -------------------------------------------------------------------------------- 1 | """The ohmconnect component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/openevse/__init__.py: -------------------------------------------------------------------------------- 1 | """The openevse component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/opengarage/__init__.py: -------------------------------------------------------------------------------- 1 | """The opengarage component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/openhome/__init__.py: -------------------------------------------------------------------------------- 1 | """The openhome component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/philips_js/__init__.py: -------------------------------------------------------------------------------- 1 | """The philips_js component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/proliphix/__init__.py: -------------------------------------------------------------------------------- 1 | """The proliphix component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/pushbullet/__init__.py: -------------------------------------------------------------------------------- 1 | """The pushbullet component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/pushover/__init__.py: -------------------------------------------------------------------------------- 1 | """The pushover component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/pushsafer/__init__.py: -------------------------------------------------------------------------------- 1 | """The pushsafer component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/pvoutput/__init__.py: -------------------------------------------------------------------------------- 1 | """The pvoutput component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/radiotherm/__init__.py: -------------------------------------------------------------------------------- 1 | """The radiotherm component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/raspyrfm/__init__.py: -------------------------------------------------------------------------------- 1 | """The raspyrfm component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/recswitch/__init__.py: -------------------------------------------------------------------------------- 1 | """The recswitch component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/rocketchat/__init__.py: -------------------------------------------------------------------------------- 1 | """The rocketchat component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/rtorrent/__init__.py: -------------------------------------------------------------------------------- 1 | """The rtorrent component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/bs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Scena" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Scene" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Szene" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Scene" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Skene" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/hr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Scena" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/is.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Sena" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Scena" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/lb.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Zeen" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Scene" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Scene" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Scena" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Cena" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Scena" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/sendgrid/__init__.py: -------------------------------------------------------------------------------- 1 | """The sendgrid integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/sensehat/__init__.py: -------------------------------------------------------------------------------- 1 | """The sensehat component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/serial_pm/__init__.py: -------------------------------------------------------------------------------- 1 | """The serial_pm component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/simplepush/__init__.py: -------------------------------------------------------------------------------- 1 | """The simplepush component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/simulated/__init__.py: -------------------------------------------------------------------------------- 1 | """The simulated component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/skybeacon/__init__.py: -------------------------------------------------------------------------------- 1 | """The skybeacon component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/snapcast/__init__.py: -------------------------------------------------------------------------------- 1 | """The snapcast component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/soundtouch/__init__.py: -------------------------------------------------------------------------------- 1 | """The soundtouch component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/spotcrime/__init__.py: -------------------------------------------------------------------------------- 1 | """The spotcrime component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/stookalert/__init__.py: -------------------------------------------------------------------------------- 1 | """The Stookalert component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/swisscom/__init__.py: -------------------------------------------------------------------------------- 1 | """The swisscom component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/switchbot/__init__.py: -------------------------------------------------------------------------------- 1 | """The switchbot component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/switchmate/__init__.py: -------------------------------------------------------------------------------- 1 | """The switchmate component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/synology/__init__.py: -------------------------------------------------------------------------------- 1 | """The synology component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Tag" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Tag" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Balise" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/lb.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Tag" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Tag" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Tag" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tautulli/__init__.py: -------------------------------------------------------------------------------- 1 | """The tautulli component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/tensorflow/__init__.py: -------------------------------------------------------------------------------- 1 | """The tensorflow component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/threshold/__init__.py: -------------------------------------------------------------------------------- 1 | """The threshold component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/time_date/__init__.py: -------------------------------------------------------------------------------- 1 | """The time_date component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/touchline/__init__.py: -------------------------------------------------------------------------------- 1 | """The touchline component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/travisci/__init__.py: -------------------------------------------------------------------------------- 1 | """The travisci component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/twilio_sms/__init__.py: -------------------------------------------------------------------------------- 1 | """The twilio_sms component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/universal/__init__.py: -------------------------------------------------------------------------------- 1 | """The universal component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/vasttrafik/__init__.py: -------------------------------------------------------------------------------- 1 | """The vasttrafik component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/version/__init__.py: -------------------------------------------------------------------------------- 1 | """The version integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/worldclock/__init__.py: -------------------------------------------------------------------------------- 1 | """The worldclock component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/xbox_live/__init__.py: -------------------------------------------------------------------------------- 1 | """The xbox_live component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/xiaomi_tv/__init__.py: -------------------------------------------------------------------------------- 1 | """The xiaomi_tv component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/zestimate/__init__.py: -------------------------------------------------------------------------------- 1 | """The zestimate component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/zhong_hong/__init__.py: -------------------------------------------------------------------------------- 1 | """The zhong_hong component.""" 2 | -------------------------------------------------------------------------------- /tests/components/airnow/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the AirNow integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/almond/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Almond integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/androidtv/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the androidtv component.""" 2 | -------------------------------------------------------------------------------- /tests/components/apprise/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the apprise component.""" 2 | -------------------------------------------------------------------------------- /tests/components/arcam_fmj/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the arcam_fmj component.""" 2 | -------------------------------------------------------------------------------- /tests/components/asuswrt/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the asuswrt component.""" 2 | -------------------------------------------------------------------------------- /tests/components/blackbird/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the blackbird component.""" 2 | -------------------------------------------------------------------------------- /tests/components/blueprint/test_init.py: -------------------------------------------------------------------------------- 1 | """Tests for the blueprint init.""" 2 | -------------------------------------------------------------------------------- /tests/components/climate/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for climate component.""" 2 | -------------------------------------------------------------------------------- /tests/components/control4/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Control4 integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/counter/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the counter component.""" 2 | -------------------------------------------------------------------------------- /tests/components/darksky/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the darksky component.""" 2 | -------------------------------------------------------------------------------- /tests/components/datadog/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the datadog component.""" 2 | -------------------------------------------------------------------------------- /tests/components/denonavr/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the denonavr integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/discovery/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the discovery component.""" 2 | -------------------------------------------------------------------------------- /tests/components/doorbird/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the DoorBird integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/duckdns/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the duckdns component.""" 2 | -------------------------------------------------------------------------------- /tests/components/dynalite/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Dynalite component.""" 2 | -------------------------------------------------------------------------------- /tests/components/enocean/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests of the EnOcean integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/facebook/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the facebook component.""" 2 | -------------------------------------------------------------------------------- /tests/components/facebox/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the facebox component.""" 2 | -------------------------------------------------------------------------------- /tests/components/fail2ban/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the fail2ban component.""" 2 | -------------------------------------------------------------------------------- /tests/components/filesize/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the filesize component.""" 2 | -------------------------------------------------------------------------------- /tests/components/firmata/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Firmata integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/freebox/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Freebox component.""" 2 | -------------------------------------------------------------------------------- /tests/components/freedns/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the freedns component.""" 2 | -------------------------------------------------------------------------------- /tests/components/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the frontend component.""" 2 | -------------------------------------------------------------------------------- /tests/components/generic/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the generic component.""" 2 | -------------------------------------------------------------------------------- /tests/components/geofency/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Geofency component.""" 2 | -------------------------------------------------------------------------------- /tests/components/gogogate2/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the GogoGate2 component.""" 2 | -------------------------------------------------------------------------------- /tests/components/google/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Google integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/gpslogger/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the GPSLogger component.""" 2 | -------------------------------------------------------------------------------- /tests/components/graphite/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the graphite component.""" 2 | -------------------------------------------------------------------------------- /tests/components/gree/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Gree Climate integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/hangouts/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Hangouts Component.""" 2 | -------------------------------------------------------------------------------- /tests/components/hddtemp/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the hddtemp component.""" 2 | -------------------------------------------------------------------------------- /tests/components/history/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the history component.""" 2 | -------------------------------------------------------------------------------- /tests/components/homeassistant/triggers/__init__.py: -------------------------------------------------------------------------------- 1 | """Test core triggers.""" 2 | -------------------------------------------------------------------------------- /tests/components/homekit/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the HomeKit component.""" 2 | -------------------------------------------------------------------------------- /tests/components/homematic/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the homematic component.""" 2 | -------------------------------------------------------------------------------- /tests/components/honeywell/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for honeywell component.""" 2 | -------------------------------------------------------------------------------- /tests/components/iaqualink/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the iAqualink component.""" 2 | -------------------------------------------------------------------------------- /tests/components/influxdb/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the influxdb component.""" 2 | -------------------------------------------------------------------------------- /tests/components/insteon/__init__.py: -------------------------------------------------------------------------------- 1 | """Test for the Insteon integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/intent/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Intent integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/juicenet/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the JuiceNet component.""" 2 | -------------------------------------------------------------------------------- /tests/components/konnected/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Konnected component.""" 2 | -------------------------------------------------------------------------------- /tests/components/litejet/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the litejet component.""" 2 | -------------------------------------------------------------------------------- /tests/components/local_ip/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the local_ip integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/locative/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Locative component.""" 2 | -------------------------------------------------------------------------------- /tests/components/logbook/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the logbook component.""" 2 | -------------------------------------------------------------------------------- /tests/components/mailbox/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for mailbox platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/mailgun/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Mailgun component.""" 2 | -------------------------------------------------------------------------------- /tests/components/manual_mqtt/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for manual_mqtt component.""" 2 | -------------------------------------------------------------------------------- /tests/components/marytts/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for marytts tts platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/melcloud/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the MELCloud integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/melissa/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the melissa component.""" 2 | -------------------------------------------------------------------------------- /tests/components/min_max/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the min_max component.""" 2 | -------------------------------------------------------------------------------- /tests/components/mochad/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Mochad integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/monoprice/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the monoprice component.""" 2 | -------------------------------------------------------------------------------- /tests/components/mqtt_json/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the mqtt_json component.""" 2 | -------------------------------------------------------------------------------- /tests/components/mqtt_room/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the mqtt_room component.""" 2 | -------------------------------------------------------------------------------- /tests/components/netatmo/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Netatmo platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/nextbus/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for the nexbus component.""" 2 | -------------------------------------------------------------------------------- /tests/components/notify/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for notification platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/numato/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the numato integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/number/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Number integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/opnsense/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the opnsense component.""" 2 | -------------------------------------------------------------------------------- /tests/components/owntracks/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for OwnTracks component.""" 2 | -------------------------------------------------------------------------------- /tests/components/person/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for the person component.""" 2 | -------------------------------------------------------------------------------- /tests/components/pilight/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the pilight component.""" 2 | -------------------------------------------------------------------------------- /tests/components/plugwise/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Plugwise integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/profiler/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Profiler integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/proximity/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the proximity component.""" 2 | -------------------------------------------------------------------------------- /tests/components/ps4/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the PlayStation 4 component.""" 2 | -------------------------------------------------------------------------------- /tests/components/rachio/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Rachio integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/reddit/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the the Reddit component.""" 2 | -------------------------------------------------------------------------------- /tests/components/samsungtv/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the samsungtv component.""" 2 | -------------------------------------------------------------------------------- /tests/components/search/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Search integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/sentry/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the sentry integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/sharkiq/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Shark IQ integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/shelly/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Shelly integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/simulated/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the simulated component.""" 2 | -------------------------------------------------------------------------------- /tests/components/sleepiq/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the sleepiq component.""" 2 | -------------------------------------------------------------------------------- /tests/components/smappee/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Smappee integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/smarthab/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the SmartHab integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/solaredge/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the SolarEdge component.""" 2 | -------------------------------------------------------------------------------- /tests/components/solarlog/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the solarlog integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/spaceapi/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the spaceapi component.""" 2 | -------------------------------------------------------------------------------- /tests/components/spotify/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Spotify integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/starline/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the StarLine component.""" 2 | -------------------------------------------------------------------------------- /tests/components/startca/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the startca component.""" 2 | -------------------------------------------------------------------------------- /tests/components/syncthru/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the syncthru integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/threshold/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for threshold component.""" 2 | -------------------------------------------------------------------------------- /tests/components/tile/__init__.py: -------------------------------------------------------------------------------- 1 | """Define tests for the Tile component.""" 2 | -------------------------------------------------------------------------------- /tests/components/time_date/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the time_date component.""" 2 | -------------------------------------------------------------------------------- /tests/components/traccar/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Traccar component.""" 2 | -------------------------------------------------------------------------------- /tests/components/universal/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the universal component.""" 2 | -------------------------------------------------------------------------------- /tests/components/upcloud/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the UpCloud integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/updater/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the updater component.""" 2 | -------------------------------------------------------------------------------- /tests/components/verisure/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Verisure integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/version/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the version component.""" 2 | -------------------------------------------------------------------------------- /tests/components/volumio/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Volumio integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/weather/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Weather platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/webhook/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the webhook component.""" 2 | -------------------------------------------------------------------------------- /tests/components/webostv/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the WebOS TV integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/websocket_api/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the websocket API.""" 2 | -------------------------------------------------------------------------------- /tests/components/withings/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the withings component.""" 2 | -------------------------------------------------------------------------------- /tests/components/zeroconf/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Zeroconf component.""" 2 | -------------------------------------------------------------------------------- /tests/components/zerproc/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the zerproc integration.""" 2 | -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- 1 | ignored: 2 | - DL3006 3 | - DL3008 4 | - DL3013 5 | - DL3018 6 | -------------------------------------------------------------------------------- /homeassistant/components/anel_pwrctrl/__init__.py: -------------------------------------------------------------------------------- 1 | """The anel_pwrctrl component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/asterisk_cdr/__init__.py: -------------------------------------------------------------------------------- 1 | """The asterisk_cdr component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/bt_smarthub/__init__.py: -------------------------------------------------------------------------------- 1 | """The bt_smarthub component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/crimereports/__init__.py: -------------------------------------------------------------------------------- 1 | """The crimereports component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/decora_wifi/__init__.py: -------------------------------------------------------------------------------- 1 | """The decora_wifi component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/dsmr_reader/__init__.py: -------------------------------------------------------------------------------- 1 | """The DSMR Reader component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ee_brightbox/__init__.py: -------------------------------------------------------------------------------- 1 | """The ee_brightbox component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ffmpeg_noise/__init__.py: -------------------------------------------------------------------------------- 1 | """The ffmpeg_noise component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/free_mobile/__init__.py: -------------------------------------------------------------------------------- 1 | """The free_mobile component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/google_cloud/__init__.py: -------------------------------------------------------------------------------- 1 | """The google_cloud component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/google_maps/__init__.py: -------------------------------------------------------------------------------- 1 | """The google_maps component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/google_wifi/__init__.py: -------------------------------------------------------------------------------- 1 | """The google_wifi component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/fa.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/he.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/hr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/hy.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/is.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/lt.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/lv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/sk.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/th.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/uk.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hikvisioncam/__init__.py: -------------------------------------------------------------------------------- 1 | """The hikvisioncam component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/hitron_coda/__init__.py: -------------------------------------------------------------------------------- 1 | """The hitron_coda component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/iammeter/__init__.py: -------------------------------------------------------------------------------- 1 | """Support for IamMeter Devices.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/input_datetime/strings.json: -------------------------------------------------------------------------------- 1 | { "title": "Input datetime" } 2 | -------------------------------------------------------------------------------- /homeassistant/components/integration/__init__.py: -------------------------------------------------------------------------------- 1 | """The integration component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/kef/__init__.py: -------------------------------------------------------------------------------- 1 | """The KEF Wireless Speakers component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/lg_soundbar/__init__.py: -------------------------------------------------------------------------------- 1 | """The lg_soundbar component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/lifx_legacy/__init__.py: -------------------------------------------------------------------------------- 1 | """The lifx_legacy component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/limitlessled/__init__.py: -------------------------------------------------------------------------------- 1 | """The limitlessled component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/lock/translations/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Sarraila" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/magicseaweed/__init__.py: -------------------------------------------------------------------------------- 1 | """The magicseaweed component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Posbus" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Postfach" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Mailbox" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Postkast" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Messaggi" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Postvak" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Poczta" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/manual_mqtt/__init__.py: -------------------------------------------------------------------------------- 1 | """The manual_mqtt component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/marytts/__init__.py: -------------------------------------------------------------------------------- 1 | """Support for MaryTTS integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/message_bird/__init__.py: -------------------------------------------------------------------------------- 1 | """The message_bird component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/msteams/__init__.py: -------------------------------------------------------------------------------- 1 | """The Microsoft Teams component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/nfandroidtv/__init__.py: -------------------------------------------------------------------------------- 1 | """The nfandroidtv component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/nmap_tracker/__init__.py: -------------------------------------------------------------------------------- 1 | """The nmap_tracker component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/bs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Obavjesti" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hysbysu" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Ilmoita" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/is.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Tilkynna" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Notifiche" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Varsle" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Varsle" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/no.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Varsler" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Notificar" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Notifica" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Obvesti" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Meddela" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Bildir" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/opensensemap/__init__.py: -------------------------------------------------------------------------------- 1 | """The opensensemap component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/picotts/__init__.py: -------------------------------------------------------------------------------- 1 | """Support for pico integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/pocketcasts/__init__.py: -------------------------------------------------------------------------------- 1 | """The pocketcasts component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/proximity/strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Proximity" 3 | } 4 | -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/lv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Tuvums" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/qbittorrent/__init__.py: -------------------------------------------------------------------------------- 1 | """The qbittorrent component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/qld_bushfire/__init__.py: -------------------------------------------------------------------------------- 1 | """The qld_bushfire component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/rejseplanen/__init__.py: -------------------------------------------------------------------------------- 1 | """The rejseplanen component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/rmvtransport/__init__.py: -------------------------------------------------------------------------------- 1 | """The rmvtransport component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/rpi_gpio_pwm/__init__.py: -------------------------------------------------------------------------------- 1 | """The rpi_gpio_pwm component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/russound_rio/__init__.py: -------------------------------------------------------------------------------- 1 | """The russound_rio component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Toneel" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Escena" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Sc\u00e9na" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Golygfa" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/es-419.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Escena" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Escena" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Stseen" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Eszena" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Sc\u00e8ne" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/gsw.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Szene" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Jelenet" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/id.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Adegan" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "\uc52c" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Sc\u00e8ne" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/pt-BR.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Cena" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Scen\u0103" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/sk.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Sc\u00e9na" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Scenario" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Senaryo" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/sighthound/__init__.py: -------------------------------------------------------------------------------- 1 | """The sighthound integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/socialblade/__init__.py: -------------------------------------------------------------------------------- 1 | """The socialblade component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/starlingbank/__init__.py: -------------------------------------------------------------------------------- 1 | """The starlingbank component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/steam_online/__init__.py: -------------------------------------------------------------------------------- 1 | """The steam_online component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/suez_water/__init__.py: -------------------------------------------------------------------------------- 1 | """France Suez Water integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/supervisord/__init__.py: -------------------------------------------------------------------------------- 1 | """The supervisord component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/synology_srm/__init__.py: -------------------------------------------------------------------------------- 1 | """The Synology SRM component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/system_health/strings.json: -------------------------------------------------------------------------------- 1 | { "title": "System Health" } 2 | -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Zna\u010dka" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Etiqueta" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "M\u00e4rgis" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Etichetta" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "\ud0dc\uadf8" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/pt-BR.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Etiqueta" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tank_utility/__init__.py: -------------------------------------------------------------------------------- 1 | """The tank_utility component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/twilio_call/__init__.py: -------------------------------------------------------------------------------- 1 | """The twilio_call component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/uk_transport/__init__.py: -------------------------------------------------------------------------------- 1 | """The uk_transport component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/unifi_direct/__init__.py: -------------------------------------------------------------------------------- 1 | """The unifi_direct component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/unifiled/__init__.py: -------------------------------------------------------------------------------- 1 | """Unifi LED Lights integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/upc_connect/__init__.py: -------------------------------------------------------------------------------- 1 | """The upc_connect component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/bs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Updater" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Opdater" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Updater" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Updater" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Uuendaja" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/gsw.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Updater" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/id.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Pembaru" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Oppdater" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Updater" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Updater" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/te.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Updater" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/uptimerobot/__init__.py: -------------------------------------------------------------------------------- 1 | """The uptimerobot component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/viaggiatreno/__init__.py: -------------------------------------------------------------------------------- 1 | """The viaggiatreno component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/vivotek/__init__.py: -------------------------------------------------------------------------------- 1 | """The Vivotek camera component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/volkszaehler/__init__.py: -------------------------------------------------------------------------------- 1 | """The volkszaehler component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/worxlandroid/__init__.py: -------------------------------------------------------------------------------- 1 | """The worxlandroid component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/wunderground/__init__.py: -------------------------------------------------------------------------------- 1 | """The wunderground component.""" 2 | -------------------------------------------------------------------------------- /tests/auth/mfa_modules/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the multi-factor auth modules.""" 2 | -------------------------------------------------------------------------------- /tests/components/adguard/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the AdGuard Home component.""" 2 | -------------------------------------------------------------------------------- /tests/components/air_quality/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Air Quality platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/ambiclimate/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Ambiclimate component.""" 2 | -------------------------------------------------------------------------------- /tests/components/apache_kafka/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for apache_kafka component.""" 2 | -------------------------------------------------------------------------------- /tests/components/api_streams/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the api_streams component.""" 2 | -------------------------------------------------------------------------------- /tests/components/aurora/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for the Aurora sensor platform.""" 2 | -------------------------------------------------------------------------------- /tests/components/blueprint/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the blueprint integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/buienradar/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the buienradar component.""" 2 | -------------------------------------------------------------------------------- /tests/components/calendar/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for calendar sensor platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/cert_expiry/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Cert Expiry component.""" 2 | -------------------------------------------------------------------------------- /tests/components/command_line/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for command_line component.""" 2 | -------------------------------------------------------------------------------- /tests/components/coolmaster/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Coolmaster component.""" 2 | -------------------------------------------------------------------------------- /tests/components/derivative/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the derivative component.""" 2 | -------------------------------------------------------------------------------- /tests/components/dialogflow/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Dialogflow component.""" 2 | -------------------------------------------------------------------------------- /tests/components/elkm1/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Elk-M1 Control integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/everlights/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the everlights component.""" 2 | -------------------------------------------------------------------------------- /tests/components/feedreader/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the feedreader component.""" 2 | -------------------------------------------------------------------------------- /tests/components/google_pubsub/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for google_pubsub component.""" 2 | -------------------------------------------------------------------------------- /tests/components/google_wifi/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the google_wifi component.""" 2 | -------------------------------------------------------------------------------- /tests/components/griddy/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Griddy Power integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/huawei_lte/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the huawei_lte component.""" 2 | -------------------------------------------------------------------------------- /tests/components/humidifier/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for humidifier component.""" 2 | -------------------------------------------------------------------------------- /tests/components/input_text/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the input_text component.""" 2 | -------------------------------------------------------------------------------- /tests/components/integration/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the integration component.""" 2 | -------------------------------------------------------------------------------- /tests/components/kulersky/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Kuler Sky integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/local_file/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the local_file component.""" 2 | -------------------------------------------------------------------------------- /tests/components/logentries/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the logentries component.""" 2 | -------------------------------------------------------------------------------- /tests/components/logi_circle/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Logi Circle component.""" 2 | -------------------------------------------------------------------------------- /tests/components/london_air/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the london_air component.""" 2 | -------------------------------------------------------------------------------- /tests/components/mobile_app/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the mobile app integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/ness_alarm/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the ness_alarm component.""" 2 | -------------------------------------------------------------------------------- /tests/components/notion/__init__.py: -------------------------------------------------------------------------------- 1 | """Define tests for the Notion integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/omnilogic/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Omnilogic integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/ondilo_ico/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Ondilo ICO integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/openuv/__init__.py: -------------------------------------------------------------------------------- 1 | """Define tests for the OpenUV component.""" 2 | -------------------------------------------------------------------------------- /tests/components/ovo_energy/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the OVO Energy integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/poolsense/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the PoolSense integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/prometheus/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the prometheus component.""" 2 | -------------------------------------------------------------------------------- /tests/components/pushbullet/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the pushbullet component.""" 2 | -------------------------------------------------------------------------------- /tests/components/qwikswitch/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the qwikswitch component.""" 2 | -------------------------------------------------------------------------------- /tests/components/roomba/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the iRobot Roomba integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/safe_mode/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Safe Mode integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/sighthound/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Sighthound integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/smartthings/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the SmartThings component.""" 2 | -------------------------------------------------------------------------------- /tests/components/soundtouch/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the soundtouch component.""" 2 | -------------------------------------------------------------------------------- /tests/components/statistics/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the statistics component.""" 2 | -------------------------------------------------------------------------------- /tests/components/system_log/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the system_log component.""" 2 | -------------------------------------------------------------------------------- /tests/components/tellduslive/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the TelldusLive component.""" 2 | -------------------------------------------------------------------------------- /tests/components/utility_meter/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Utility Meter component.""" 2 | -------------------------------------------------------------------------------- /tests/components/vilfo/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Vilfo Router integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/voicerss/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for VoiceRSS tts platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/wake_on_lan/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the wake_on_lan component.""" 2 | -------------------------------------------------------------------------------- /tests/components/worldclock/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the worldclock component.""" 2 | -------------------------------------------------------------------------------- /tests/components/yandextts/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for YandexTTS tts platforms.""" 2 | -------------------------------------------------------------------------------- /tests/testing_config/__init__.py: -------------------------------------------------------------------------------- 1 | """Configuration that's used when running tests.""" 2 | -------------------------------------------------------------------------------- /docs/screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/core/dev/docs/screenshots.png -------------------------------------------------------------------------------- /homeassistant/components/acer_projector/__init__.py: -------------------------------------------------------------------------------- 1 | """The acer_projector component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/aladdin_connect/__init__.py: -------------------------------------------------------------------------------- 1 | """The aladdin_connect component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/alpha_vantage/__init__.py: -------------------------------------------------------------------------------- 1 | """The Alpha Vantage component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/arris_tg2492lg/__init__.py: -------------------------------------------------------------------------------- 1 | """The Arris TG2492LG component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/beewi_smartclim/__init__.py: -------------------------------------------------------------------------------- 1 | """The beewi_smartclim component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/bizkaibus/__init__.py: -------------------------------------------------------------------------------- 1 | """The Bizkaibus bus tracker component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/blinksticklight/__init__.py: -------------------------------------------------------------------------------- 1 | """The blinksticklight component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/bmp280/__init__.py: -------------------------------------------------------------------------------- 1 | """The Bosch BMP280 sensor integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/bt_home_hub_5/__init__.py: -------------------------------------------------------------------------------- 1 | """The bt_home_hub_5 component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/clicksend_tts/__init__.py: -------------------------------------------------------------------------------- 1 | """The clicksend_tts component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/coinmarketcap/__init__.py: -------------------------------------------------------------------------------- 1 | """The coinmarketcap component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/bs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Razgovor" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Conversa" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Sgwrs" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Samtale" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Vestlus" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/hr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Razgovor" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/is.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Samtal" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/lv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Saruna" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Samtale" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Samtale" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/no.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Samtale" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Rozmowa" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Conversa" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Pogovor" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/conversation/translations/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Samtal" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/currencylayer/__init__.py: -------------------------------------------------------------------------------- 1 | """The currencylayer component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/demo/translations/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "\u30c7\u30e2" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/deutsche_bahn/__init__.py: -------------------------------------------------------------------------------- 1 | """The deutsche_bahn component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/digitalloggers/__init__.py: -------------------------------------------------------------------------------- 1 | """The digitalloggers component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/enphase_envoy/__init__.py: -------------------------------------------------------------------------------- 1 | """The enphase_envoy component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/epsonworkforce/__init__.py: -------------------------------------------------------------------------------- 1 | """The epsonworkforce component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ffmpeg_motion/__init__.py: -------------------------------------------------------------------------------- 1 | """The ffmpeg_motion component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/geo_json_events/__init__.py: -------------------------------------------------------------------------------- 1 | """The geo_json_events component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/geo_rss_events/__init__.py: -------------------------------------------------------------------------------- 1 | """The geo_rss_events component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/es-419.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/hassio/translations/pt-BR.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hass.io" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/haveibeenpwned/__init__.py: -------------------------------------------------------------------------------- 1 | """The haveibeenpwned component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/huawei_router/__init__.py: -------------------------------------------------------------------------------- 1 | """The huawei_router component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ifttt/const.py: -------------------------------------------------------------------------------- 1 | """Const for IFTTT.""" 2 | 3 | DOMAIN = "ifttt" 4 | -------------------------------------------------------------------------------- /homeassistant/components/ign_sismologia/__init__.py: -------------------------------------------------------------------------------- 1 | """The ign_sismologia component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/image_processing/strings.json: -------------------------------------------------------------------------------- 1 | { "title": "Image processing" } 2 | -------------------------------------------------------------------------------- /homeassistant/components/input_select/translations/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Valinta" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/input_select/translations/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Escolher" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/input_text/translations/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Input text" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/input_text/translations/id.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Input teks" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/input_text/translations/lb.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Text-Agab" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/input_text/translations/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Angi tekst" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/keenetic_ndms2/__init__.py: -------------------------------------------------------------------------------- 1 | """The keenetic_ndms2 component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/launch_library/__init__.py: -------------------------------------------------------------------------------- 1 | """The launch_library component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/lifx/const.py: -------------------------------------------------------------------------------- 1 | """Const for LIFX.""" 2 | 3 | DOMAIN = "lifx" 4 | -------------------------------------------------------------------------------- /homeassistant/components/linksys_smart/__init__.py: -------------------------------------------------------------------------------- 1 | """The linksys_smart component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/linux_battery/__init__.py: -------------------------------------------------------------------------------- 1 | """The linux_battery component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "B\u00fastia" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Blwch post" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Postkasse" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Buz\u00f3n" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Postontzia" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Postilaatikko" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/id.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Kotak pesan" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Postkasse" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Postkasse" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/no.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Postkasse" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Brevl\u00e5da" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/mailbox/translations/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Posta kutusu" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/microsoft/__init__.py: -------------------------------------------------------------------------------- 1 | """Support for Microsoft integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/modem_callerid/__init__.py: -------------------------------------------------------------------------------- 1 | """The modem_callerid component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/neurio_energy/__init__.py: -------------------------------------------------------------------------------- 1 | """The neurio_energy component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Stel in kennis" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Notificacions" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Notifikationer" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Notifications" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/es-419.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Notificar" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Notificaciones" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Teavitused" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Jakinarazi" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Notifications" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/hr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Obavijestiti" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/id.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Pemberitahuan" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "\u901a\u77e5" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "\uc54c\ub9bc" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/lb.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Notifikatioun" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/lv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Pazi\u0146ot" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Notificeer" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Powiadomienia" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/notify/translations/sk.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Upozornenie" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/nx584/__init__.py: -------------------------------------------------------------------------------- 1 | """Support for NX584 alarm control panels.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/oasa_telematics/__init__.py: -------------------------------------------------------------------------------- 1 | """The OASA Telematics component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/openalpr_cloud/__init__.py: -------------------------------------------------------------------------------- 1 | """The openalpr_cloud component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/openalpr_local/__init__.py: -------------------------------------------------------------------------------- 1 | """The openalpr_local component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/osramlightify/__init__.py: -------------------------------------------------------------------------------- 1 | """The osramlightify component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Nabyheid" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/bs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Udaljenost" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Proximitat" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Agosrwydd" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "N\u00e6rhed" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "N\u00e4he" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Proximity" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Proximidad" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Gertutasuna" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/hr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Blizina" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/id.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Kedekatan" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "N\u00e6rhet" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Nabijheid" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/no.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "N\u00e6rhet" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Proximidade" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Proximitate" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/proximity/translations/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "N\u00e4rhet" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/quantum_gateway/__init__.py: -------------------------------------------------------------------------------- 1 | """The quantum_gateway component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/russound_rnet/__init__.py: -------------------------------------------------------------------------------- 1 | """The russound_rnet component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/scene/translations/lv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Si\u017eets" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/seven_segments/__init__.py: -------------------------------------------------------------------------------- 1 | """The seven_segments component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/seventeentrack/__init__.py: -------------------------------------------------------------------------------- 1 | """The seventeentrack component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/sony_projector/__init__.py: -------------------------------------------------------------------------------- 1 | """The sony_projector component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/synology_chat/__init__.py: -------------------------------------------------------------------------------- 1 | """The synology_chat component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/systemmonitor/__init__.py: -------------------------------------------------------------------------------- 1 | """The systemmonitor integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/zh-Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "\u6807\u7b7e" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/tag/translations/zh-Hant.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "\u6a19\u7c64" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/transport_nsw/__init__.py: -------------------------------------------------------------------------------- 1 | """The transport_nsw component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/ue_smart_radio/__init__.py: -------------------------------------------------------------------------------- 1 | """The ue_smart_radio component.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Opdateerder" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Actualitzador" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Diweddarwr" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Actualizador" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "P\u00e4ivitys" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Aggiornamento" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Oppdateringar" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/no.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Oppdaterer" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Aktualizator" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Atualizador" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/updater/translations/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Uppdaterare" 3 | } -------------------------------------------------------------------------------- /homeassistant/components/voicerss/__init__.py: -------------------------------------------------------------------------------- 1 | """Support for VoiceRSS integration.""" 2 | -------------------------------------------------------------------------------- /homeassistant/components/worldtidesinfo/__init__.py: -------------------------------------------------------------------------------- 1 | """The worldtidesinfo component.""" 2 | -------------------------------------------------------------------------------- /tests/components/airvisual/__init__.py: -------------------------------------------------------------------------------- 1 | """Define tests for the AirVisual component.""" 2 | -------------------------------------------------------------------------------- /tests/components/alarmdecoder/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for AlarmDecoder integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/azure_devops/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Azure DevOps integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/azure_event_hub/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for azure_event_hub component.""" 2 | -------------------------------------------------------------------------------- /tests/components/binary_sensor/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Binary sensor platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/coinmarketcap/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the coinmarketcap component.""" 2 | -------------------------------------------------------------------------------- /tests/components/configurator/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the configurator component.""" 2 | -------------------------------------------------------------------------------- /tests/components/conversation/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the conversation component.""" 2 | -------------------------------------------------------------------------------- /tests/components/coronavirus/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Coronavirus integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/default_config/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the default config component.""" 2 | -------------------------------------------------------------------------------- /tests/components/demo/test_calendar.py: -------------------------------------------------------------------------------- 1 | """The tests for the demo calendar component.""" 2 | -------------------------------------------------------------------------------- /tests/components/device_tracker/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Device tracker platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/ee_brightbox/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the ee_brightbox component.""" 2 | -------------------------------------------------------------------------------- /tests/components/flunearyou/__init__.py: -------------------------------------------------------------------------------- 1 | """Define tests for the flunearyou component.""" 2 | -------------------------------------------------------------------------------- /tests/components/folder_watcher/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the folder_watcher component.""" 2 | -------------------------------------------------------------------------------- /tests/components/forked_daapd/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the forked_daapd component.""" 2 | -------------------------------------------------------------------------------- /tests/components/garmin_connect/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Garmin Connect component.""" 2 | -------------------------------------------------------------------------------- /tests/components/geo_location/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Geo Location platforms.""" 2 | -------------------------------------------------------------------------------- /tests/components/geo_rss_events/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the geo_rss_events component.""" 2 | -------------------------------------------------------------------------------- /tests/components/google_domains/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the google_domains component.""" 2 | -------------------------------------------------------------------------------- /tests/components/guardian/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Elexa Guardian integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/here_travel_time/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for here_travel_time component.""" 2 | -------------------------------------------------------------------------------- /tests/components/history_stats/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the history_stats component.""" 2 | -------------------------------------------------------------------------------- /tests/components/hlk_sw16/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Hi-Link HLK-SW16 integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/home_connect/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Home Connect integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/ign_sismologia/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the ign_sismologia component.""" 2 | -------------------------------------------------------------------------------- /tests/components/input_boolean/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the input_boolean component.""" 2 | -------------------------------------------------------------------------------- /tests/components/input_datetime/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the input_datetime component.""" 2 | -------------------------------------------------------------------------------- /tests/components/input_number/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the input_number component.""" 2 | -------------------------------------------------------------------------------- /tests/components/input_select/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the input_select component.""" 2 | -------------------------------------------------------------------------------- /tests/components/intent_script/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the intent_script component.""" 2 | -------------------------------------------------------------------------------- /tests/components/luftdaten/__init__.py: -------------------------------------------------------------------------------- 1 | """Define tests for the Luftdaten component.""" 2 | -------------------------------------------------------------------------------- /tests/components/lutron_caseta/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Lutron Caseta integration.""" 2 | -------------------------------------------------------------------------------- /tests/components/media_player/__init__.py: -------------------------------------------------------------------------------- 1 | """The tests for Media player platforms.""" 2 | --------------------------------------------------------------------------------