2015-11-17 08:18:42 +00:00
|
|
|
# Home Assistant core
|
2018-09-10 08:39:51 +00:00
|
|
|
aiohttp==3.4.4
|
2018-11-01 10:26:33 +00:00
|
|
|
astral==1.7.1
|
2018-10-21 12:13:30 +00:00
|
|
|
async_timeout==3.0.1
|
2018-09-02 17:01:43 +00:00
|
|
|
attrs==18.2.0
|
2018-08-26 20:50:31 +00:00
|
|
|
bcrypt==3.1.4
|
2018-05-19 08:04:00 +00:00
|
|
|
certifi>=2018.04.16
|
2018-12-05 13:43:29 +00:00
|
|
|
idna==2.7
|
2018-05-19 08:04:00 +00:00
|
|
|
jinja2>=2.10
|
2018-08-14 19:14:12 +00:00
|
|
|
PyJWT==1.6.4
|
2018-08-14 20:02:01 +00:00
|
|
|
cryptography==2.3.1
|
2018-05-19 08:04:00 +00:00
|
|
|
pip>=8.0.3
|
2018-12-17 06:51:13 +00:00
|
|
|
python-slugify==1.2.6
|
2018-05-19 08:04:00 +00:00
|
|
|
pytz>=2018.04
|
2018-07-07 14:48:02 +00:00
|
|
|
pyyaml>=3.13,<4
|
2018-11-21 18:58:56 +00:00
|
|
|
requests==2.20.1
|
2018-12-01 23:17:41 +00:00
|
|
|
ruamel.yaml==0.15.80
|
2018-08-05 00:46:14 +00:00
|
|
|
voluptuous==0.11.5
|
2018-09-09 07:49:51 +00:00
|
|
|
voluptuous-serialize==2.0.0
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2016-09-15 01:20:49 +00:00
|
|
|
# homeassistant.components.nuimo_controller
|
2018-06-17 13:41:49 +00:00
|
|
|
--only-binary=all nuimo==0.1.0
|
2016-09-15 01:20:49 +00:00
|
|
|
|
2018-07-30 14:15:13 +00:00
|
|
|
# homeassistant.components.sensor.dht
|
2018-11-28 12:38:26 +00:00
|
|
|
# Adafruit-DHT==1.4.0
|
2018-07-30 14:15:13 +00:00
|
|
|
|
2018-04-19 09:37:30 +00:00
|
|
|
# homeassistant.components.sensor.sht31
|
|
|
|
Adafruit-GPIO==1.0.3
|
|
|
|
|
|
|
|
# homeassistant.components.sensor.sht31
|
|
|
|
Adafruit-SHT31==1.0.2
|
|
|
|
|
2017-01-05 19:53:48 +00:00
|
|
|
# homeassistant.components.bbb_gpio
|
2017-01-12 16:31:30 +00:00
|
|
|
# Adafruit_BBIO==1.0.0
|
2017-01-05 19:53:48 +00:00
|
|
|
|
2018-02-19 22:46:22 +00:00
|
|
|
# homeassistant.components.homekit
|
2018-11-16 10:42:48 +00:00
|
|
|
HAP-python==2.4.1
|
2018-02-19 22:46:22 +00:00
|
|
|
|
2018-03-31 21:20:58 +00:00
|
|
|
# homeassistant.components.notify.mastodon
|
2018-07-31 19:17:55 +00:00
|
|
|
Mastodon.py==1.3.1
|
2018-03-31 21:20:58 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.isy994
|
ISY994 sensor improvements (#10805)
* Fire events for ISY994 control events
This allows hass to react directly to Insteon button presses (on switches and remotes), including presses, double-presses, and long holds
* Move change event subscription to after entity is added to hass
The event handler method requires `self.hass` to exist, which doesn't have a value until the async_added_to_hass method is called. Should eliminate a race condition.
* Overhaul binary sensors in ISY994 to be functional "out of the box"
We now smash all of the subnodes from the ISY994 in to one Hass binary_sensor, and automatically support both paradigms of state reporting that Insteon sensors can do. Sometimes a single node's state represents the sensor's state, other times two nodes are used and only "ON" events are sent from each. The logic between the two forunately do not conflict so we can support both without knowing which mode the device is in.
This also allows us to handle the heartbeat functionality that certain sensors have - we simply store the timestamp of the heartbeat as an attribute on the sensor device. It defaults to Unknown on bootup if and only if the device supports heartbeats, due to the presence of subnode 4.
* Parse the binary sensor device class from the ISY's device "type"
Now we automatically know which sensors are moisture, motion, and openings! (We also reverse the moisture sensor state, because Insteon reports ON for dry on the primary node.)
* Code review tweaks
The one material change here is that the event subscribers were moved to the `async_added_to_hass` method, as the handlers depend on things that only exist after the entity has been added.
* Handle cases where a sensor's state is unknown
When the ISY first boots up, if a battery-powered sensor has not reported in yet (due to heartbeat or a change in state), the state is unknown until it does.
* Clean up from code review
Fix coroutine await, remove unnecessary exception check, and return None when state is unknown
* Unknown value from PyISY is now -inf rather than -1
* Move heartbeat handling to a separate sensor
Now all heartbeat-compatible sensors will have a separate `binary_sensor` device that represents the battery state (on = dead)
* Add support for Unknown state, which is being added in next PyISY
PyISY will report unknown states as the number "-inf". This is implemented in the base ISY994 component, but subcomponents that override the `state` method needed some extra logic to handle it as well.
* Change a couple try blocks to explicit None checks
* Bump PyISY to 1.1.0, now that it has been published!
* Remove -inf checking from base component
The implementation of the -inf checking was improved in another branch which has been merged in to this branch already.
* Restrict negative-node and heartbeat support to known compatible types
Not all Insteon sensors use the same subnode IDs for the same things, so we need to use different logic depending on device type. Negative node and heartbeat support is now only used for leak sensors and open/close sensors.
* Use new style string formatting
* Add binary sensor detection for pre-5.x firmware
Meant to do this originally; writing documentation revealed that this requirement was missed!
2017-12-14 04:14:56 +00:00
|
|
|
PyISY==1.1.0
|
2016-01-14 06:22:42 +00:00
|
|
|
|
2017-03-26 17:06:40 +00:00
|
|
|
# homeassistant.components.sensor.mvglive
|
2017-05-30 16:26:26 +00:00
|
|
|
PyMVGLive==1.1.4
|
2017-03-26 17:06:40 +00:00
|
|
|
|
2015-11-17 08:18:42 +00:00
|
|
|
# homeassistant.components.arduino
|
2017-04-19 10:48:15 +00:00
|
|
|
PyMata==2.14
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2018-08-26 20:38:52 +00:00
|
|
|
# homeassistant.auth.mfa_modules.totp
|
|
|
|
PyQRCode==1.2.1
|
|
|
|
|
2018-08-10 17:35:09 +00:00
|
|
|
# homeassistant.components.sensor.rmvtransport
|
2018-10-10 06:10:42 +00:00
|
|
|
PyRMVtransport==0.1.3
|
2018-08-10 17:35:09 +00:00
|
|
|
|
2018-09-06 08:02:37 +00:00
|
|
|
# homeassistant.components.switch.switchbot
|
2018-12-12 08:16:20 +00:00
|
|
|
PySwitchbot==0.5
|
2018-09-06 08:02:37 +00:00
|
|
|
|
2018-10-11 07:44:17 +00:00
|
|
|
# homeassistant.components.sensor.transport_nsw
|
2018-11-05 07:27:20 +00:00
|
|
|
PyTransportNSW==0.1.1
|
2018-10-11 07:44:17 +00:00
|
|
|
|
2017-09-19 09:36:59 +00:00
|
|
|
# homeassistant.components.xiaomi_aqara
|
2018-10-08 07:32:01 +00:00
|
|
|
PyXiaomiGateway==0.11.1
|
2017-09-19 09:36:59 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.rpi_gpio
|
|
|
|
# RPi.GPIO==0.6.1
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-11-01 03:33:47 +00:00
|
|
|
# homeassistant.components.remember_the_milk
|
|
|
|
RtmAPI==0.7.0
|
|
|
|
|
2017-10-07 09:02:40 +00:00
|
|
|
# homeassistant.components.sensor.travisci
|
|
|
|
TravisPy==0.3.5
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.notify.twitter
|
2018-05-27 13:46:58 +00:00
|
|
|
TwitterAPI==2.5.4
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2018-03-31 21:01:07 +00:00
|
|
|
# homeassistant.components.sensor.waze_travel_time
|
2018-07-01 17:02:02 +00:00
|
|
|
WazeRouteCalculator==0.6
|
2018-03-31 21:01:07 +00:00
|
|
|
|
2017-10-28 23:05:56 +00:00
|
|
|
# homeassistant.components.notify.yessssms
|
2018-10-04 21:34:04 +00:00
|
|
|
YesssSMS==0.2.3
|
2017-10-28 23:05:56 +00:00
|
|
|
|
2017-08-20 14:55:48 +00:00
|
|
|
# homeassistant.components.abode
|
2018-10-11 20:00:51 +00:00
|
|
|
abodepy==0.14.0
|
2017-08-20 14:55:48 +00:00
|
|
|
|
2018-02-20 16:14:34 +00:00
|
|
|
# homeassistant.components.media_player.frontier_silicon
|
2018-08-21 13:30:40 +00:00
|
|
|
afsapi==0.0.4
|
2018-02-20 16:14:34 +00:00
|
|
|
|
2018-11-07 17:32:13 +00:00
|
|
|
# homeassistant.components.asuswrt
|
2018-12-12 19:24:44 +00:00
|
|
|
aioasuswrt==1.1.15
|
2018-10-23 09:08:11 +00:00
|
|
|
|
2017-04-16 01:11:36 +00:00
|
|
|
# homeassistant.components.device_tracker.automatic
|
2018-02-17 19:13:27 +00:00
|
|
|
aioautomatic==0.6.5
|
2017-04-16 01:11:36 +00:00
|
|
|
|
2017-02-27 10:45:32 +00:00
|
|
|
# homeassistant.components.sensor.dnsip
|
|
|
|
aiodns==1.1.1
|
|
|
|
|
2018-12-17 00:29:32 +00:00
|
|
|
# homeassistant.components.esphome
|
|
|
|
aioesphomeapi==1.1.0
|
|
|
|
|
2018-06-05 18:38:50 +00:00
|
|
|
# homeassistant.components.device_tracker.freebox
|
2018-10-30 06:35:23 +00:00
|
|
|
aiofreepybox==0.0.5
|
2018-06-05 18:38:50 +00:00
|
|
|
|
2018-06-13 15:00:33 +00:00
|
|
|
# homeassistant.components.camera.yi
|
|
|
|
aioftp==0.10.1
|
|
|
|
|
2017-01-25 05:29:34 +00:00
|
|
|
# homeassistant.components.emulated_hue
|
2016-05-14 07:58:36 +00:00
|
|
|
# homeassistant.components.http
|
2018-03-17 16:37:53 +00:00
|
|
|
aiohttp_cors==0.7.0
|
2016-05-10 01:09:38 +00:00
|
|
|
|
2018-03-04 05:28:04 +00:00
|
|
|
# homeassistant.components.hue
|
2018-05-28 14:21:00 +00:00
|
|
|
aiohue==1.5.0
|
2018-03-04 05:28:04 +00:00
|
|
|
|
2017-09-26 07:26:26 +00:00
|
|
|
# homeassistant.components.sensor.imap
|
2017-10-18 08:00:00 +00:00
|
|
|
aioimaplib==0.7.13
|
2017-09-26 07:26:26 +00:00
|
|
|
|
2018-10-07 21:14:53 +00:00
|
|
|
# homeassistant.components.lifx
|
2018-12-07 06:06:35 +00:00
|
|
|
aiolifx==0.6.7
|
2017-06-27 05:05:32 +00:00
|
|
|
|
|
|
|
# homeassistant.components.light.lifx
|
2018-10-06 12:32:54 +00:00
|
|
|
aiolifx_effects==0.2.1
|
2017-03-16 05:50:33 +00:00
|
|
|
|
2017-05-26 20:19:19 +00:00
|
|
|
# homeassistant.components.scene.hunterdouglas_powerview
|
2017-10-23 06:34:50 +00:00
|
|
|
aiopvapi==1.5.4
|
2017-05-26 20:19:19 +00:00
|
|
|
|
2018-10-16 08:35:35 +00:00
|
|
|
# homeassistant.components.unifi
|
|
|
|
aiounifi==3
|
|
|
|
|
2018-07-30 05:19:34 +00:00
|
|
|
# homeassistant.components.cover.aladdin_connect
|
2018-08-16 05:18:29 +00:00
|
|
|
aladdin_connect==0.3
|
2018-07-30 05:19:34 +00:00
|
|
|
|
2017-04-12 09:35:35 +00:00
|
|
|
# homeassistant.components.alarmdecoder
|
2018-01-04 19:10:56 +00:00
|
|
|
alarmdecoder==1.13.2
|
2017-04-12 09:35:35 +00:00
|
|
|
|
2017-12-03 20:34:59 +00:00
|
|
|
# homeassistant.components.sensor.alpha_vantage
|
2018-08-27 20:00:20 +00:00
|
|
|
alpha_vantage==2.1.0
|
2017-12-03 20:34:59 +00:00
|
|
|
|
2018-12-14 22:53:49 +00:00
|
|
|
# homeassistant.components.sensor.ambient_station
|
|
|
|
ambient_api==1.5.2
|
|
|
|
|
2017-07-11 08:10:10 +00:00
|
|
|
# homeassistant.components.amcrest
|
2018-06-16 10:57:58 +00:00
|
|
|
amcrest==1.2.3
|
2016-11-30 21:07:17 +00:00
|
|
|
|
2018-06-17 11:05:25 +00:00
|
|
|
# homeassistant.components.switch.anel_pwrctrl
|
|
|
|
anel_pwrctrl-homeassistant==0.0.1.dev2
|
|
|
|
|
2017-01-19 19:07:01 +00:00
|
|
|
# homeassistant.components.media_player.anthemav
|
2017-01-24 23:20:59 +00:00
|
|
|
anthemav==1.1.8
|
2017-01-19 19:07:01 +00:00
|
|
|
|
2016-02-10 16:32:18 +00:00
|
|
|
# homeassistant.components.apcupsd
|
2017-07-02 09:24:07 +00:00
|
|
|
apcaccess==0.0.13
|
2016-02-10 16:32:18 +00:00
|
|
|
|
2016-10-18 02:41:49 +00:00
|
|
|
# homeassistant.components.notify.apns
|
2017-11-09 05:09:19 +00:00
|
|
|
apns2==0.3.0
|
2016-10-18 02:41:49 +00:00
|
|
|
|
2018-10-02 05:32:03 +00:00
|
|
|
# homeassistant.components.aqualogic
|
|
|
|
aqualogic==1.0
|
|
|
|
|
2017-08-06 18:19:47 +00:00
|
|
|
# homeassistant.components.asterisk_mbox
|
2018-08-30 16:44:37 +00:00
|
|
|
asterisk_mbox==0.5.0
|
2017-08-06 18:19:47 +00:00
|
|
|
|
2018-09-18 18:21:52 +00:00
|
|
|
# homeassistant.components.upnp
|
2018-08-05 12:41:18 +00:00
|
|
|
# homeassistant.components.media_player.dlna_dmr
|
2018-11-11 15:10:03 +00:00
|
|
|
async-upnp-client==0.13.2
|
2018-08-05 12:41:18 +00:00
|
|
|
|
2018-11-10 20:17:14 +00:00
|
|
|
# homeassistant.components.light.avion
|
|
|
|
# avion==0.10
|
|
|
|
|
2017-05-12 15:51:54 +00:00
|
|
|
# homeassistant.components.axis
|
2018-10-29 05:52:30 +00:00
|
|
|
axis==16
|
2017-05-12 15:51:54 +00:00
|
|
|
|
2017-11-27 09:13:25 +00:00
|
|
|
# homeassistant.components.tts.baidu
|
|
|
|
baidu-aip==1.6.6
|
|
|
|
|
2017-05-10 03:23:19 +00:00
|
|
|
# homeassistant.components.sensor.modem_callerid
|
|
|
|
basicmodem==0.7
|
|
|
|
|
2016-09-07 14:32:35 +00:00
|
|
|
# homeassistant.components.sensor.linux_battery
|
2016-11-19 06:04:15 +00:00
|
|
|
batinfo==0.4.2
|
2016-09-07 14:32:35 +00:00
|
|
|
|
2017-04-04 21:57:19 +00:00
|
|
|
# homeassistant.components.sensor.eddystone_temperature
|
2018-04-10 01:24:18 +00:00
|
|
|
# beacontools[scan]==1.2.3
|
2017-04-04 21:57:19 +00:00
|
|
|
|
2017-01-27 07:27:29 +00:00
|
|
|
# homeassistant.components.device_tracker.linksys_ap
|
2016-10-16 23:06:07 +00:00
|
|
|
# homeassistant.components.sensor.scrape
|
2017-10-28 23:34:55 +00:00
|
|
|
# homeassistant.components.sensor.sytadin
|
2018-08-13 08:52:47 +00:00
|
|
|
beautifulsoup4==4.6.3
|
2016-10-16 23:06:07 +00:00
|
|
|
|
2017-04-25 05:24:57 +00:00
|
|
|
# homeassistant.components.zha
|
2018-09-04 05:46:27 +00:00
|
|
|
bellows==0.7.0
|
2017-04-25 05:24:57 +00:00
|
|
|
|
2018-02-20 22:02:08 +00:00
|
|
|
# homeassistant.components.bmw_connected_drive
|
2018-09-26 06:24:59 +00:00
|
|
|
bimmer_connected==0.5.3
|
2018-02-20 22:02:08 +00:00
|
|
|
|
2017-03-07 22:26:53 +00:00
|
|
|
# homeassistant.components.blink
|
2018-12-03 20:45:12 +00:00
|
|
|
blinkpy==0.11.0
|
2017-03-07 22:26:53 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.light.blinksticklight
|
2016-08-20 22:41:14 +00:00
|
|
|
blinkstick==1.1.8
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-04-30 18:48:54 +00:00
|
|
|
# homeassistant.components.light.blinkt
|
2017-05-12 02:20:23 +00:00
|
|
|
# blinkt==0.1.0
|
2017-04-30 18:48:54 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.sensor.bitcoin
|
2018-06-01 17:41:35 +00:00
|
|
|
blockchain==1.4.4
|
2015-11-26 22:57:34 +00:00
|
|
|
|
2017-07-18 22:02:42 +00:00
|
|
|
# homeassistant.components.light.decora
|
2018-01-20 07:50:25 +00:00
|
|
|
# bluepy==1.1.4
|
2017-07-18 22:02:42 +00:00
|
|
|
|
2018-01-23 07:51:52 +00:00
|
|
|
# homeassistant.components.sensor.bme680
|
|
|
|
# bme680==1.0.4
|
|
|
|
|
2018-10-13 19:03:30 +00:00
|
|
|
# homeassistant.components.route53
|
2016-05-15 20:17:35 +00:00
|
|
|
# homeassistant.components.notify.aws_lambda
|
|
|
|
# homeassistant.components.notify.aws_sns
|
|
|
|
# homeassistant.components.notify.aws_sqs
|
2017-01-26 22:22:47 +00:00
|
|
|
# homeassistant.components.tts.amazon_polly
|
2018-10-06 18:46:20 +00:00
|
|
|
boto3==1.9.16
|
2016-05-15 20:17:35 +00:00
|
|
|
|
2017-07-24 15:59:10 +00:00
|
|
|
# homeassistant.scripts.credstash
|
2017-10-29 09:24:56 +00:00
|
|
|
botocore==1.7.34
|
2017-07-24 15:59:10 +00:00
|
|
|
|
2018-06-17 11:07:10 +00:00
|
|
|
# homeassistant.components.media_player.braviatv
|
|
|
|
braviarc-homeassistant==0.3.7.dev0
|
|
|
|
|
2018-04-01 08:09:16 +00:00
|
|
|
# homeassistant.components.sensor.broadlink
|
|
|
|
# homeassistant.components.switch.broadlink
|
2018-04-25 02:45:16 +00:00
|
|
|
broadlink==0.9.0
|
2018-04-01 08:09:16 +00:00
|
|
|
|
2018-12-16 11:21:07 +00:00
|
|
|
# homeassistant.components.sensor.brottsplatskartan
|
|
|
|
brottsplatskartan==0.0.1
|
|
|
|
|
2018-07-25 10:17:12 +00:00
|
|
|
# homeassistant.components.cover.brunt
|
2018-08-22 18:12:54 +00:00
|
|
|
brunt==0.1.3
|
2018-07-25 10:17:12 +00:00
|
|
|
|
2018-03-31 21:22:54 +00:00
|
|
|
# homeassistant.components.device_tracker.bluetooth_tracker
|
|
|
|
bt_proximity==0.1.2
|
|
|
|
|
2018-08-06 05:38:02 +00:00
|
|
|
# homeassistant.components.device_tracker.bt_home_hub_5
|
|
|
|
bthomehub5-devicelist==0.1.1
|
|
|
|
|
2018-10-23 16:35:21 +00:00
|
|
|
# homeassistant.components.device_tracker.bt_smarthub
|
2018-12-04 22:26:20 +00:00
|
|
|
btsmarthub_devicelist==0.1.3
|
2018-10-23 16:35:21 +00:00
|
|
|
|
2017-06-05 06:48:11 +00:00
|
|
|
# homeassistant.components.sensor.buienradar
|
2017-07-07 04:39:28 +00:00
|
|
|
# homeassistant.components.weather.buienradar
|
2018-02-18 00:19:27 +00:00
|
|
|
buienradar==0.91
|
2017-06-05 06:48:11 +00:00
|
|
|
|
2017-12-10 16:44:28 +00:00
|
|
|
# homeassistant.components.calendar.caldav
|
|
|
|
caldav==0.5.0
|
|
|
|
|
2017-02-26 23:04:30 +00:00
|
|
|
# homeassistant.components.notify.ciscospark
|
|
|
|
ciscosparkapi==0.4.2
|
|
|
|
|
2018-03-05 21:26:37 +00:00
|
|
|
# homeassistant.components.coinbase
|
|
|
|
coinbase==2.1.0
|
|
|
|
|
2016-09-02 14:59:05 +00:00
|
|
|
# homeassistant.components.sensor.coinmarketcap
|
2018-05-25 13:39:04 +00:00
|
|
|
coinmarketcap==5.0.3
|
2016-09-02 14:59:05 +00:00
|
|
|
|
2016-08-23 04:42:05 +00:00
|
|
|
# homeassistant.scripts.check_config
|
2018-04-28 12:03:09 +00:00
|
|
|
colorlog==3.1.4
|
2016-08-23 04:42:05 +00:00
|
|
|
|
2016-10-18 02:59:41 +00:00
|
|
|
# homeassistant.components.alarm_control_panel.concord232
|
|
|
|
# homeassistant.components.binary_sensor.concord232
|
2018-01-12 07:45:01 +00:00
|
|
|
concord232==0.15
|
2016-10-18 02:59:41 +00:00
|
|
|
|
2018-03-30 00:12:11 +00:00
|
|
|
# homeassistant.components.climate.eq3btsmart
|
2018-04-17 09:45:19 +00:00
|
|
|
# homeassistant.components.device_tracker.xiaomi_miio
|
2018-03-30 00:12:11 +00:00
|
|
|
# homeassistant.components.fan.xiaomi_miio
|
|
|
|
# homeassistant.components.light.xiaomi_miio
|
|
|
|
# homeassistant.components.remote.xiaomi_miio
|
|
|
|
# homeassistant.components.sensor.eddystone_temperature
|
|
|
|
# homeassistant.components.sensor.xiaomi_miio
|
|
|
|
# homeassistant.components.switch.xiaomi_miio
|
|
|
|
# homeassistant.components.vacuum.xiaomi_miio
|
2018-10-10 21:52:45 +00:00
|
|
|
construct==2.9.45
|
2018-03-30 00:12:11 +00:00
|
|
|
|
2017-07-24 15:59:10 +00:00
|
|
|
# homeassistant.scripts.credstash
|
2018-11-10 07:21:39 +00:00
|
|
|
# credstash==1.15.0
|
2017-07-24 15:59:10 +00:00
|
|
|
|
2017-04-07 05:47:03 +00:00
|
|
|
# homeassistant.components.sensor.crimereports
|
|
|
|
crimereports==1.0.0
|
|
|
|
|
2017-05-05 22:34:40 +00:00
|
|
|
# homeassistant.components.datadog
|
|
|
|
datadog==0.15.0
|
|
|
|
|
2017-03-31 20:03:27 +00:00
|
|
|
# homeassistant.components.sensor.metoffice
|
|
|
|
# homeassistant.components.weather.metoffice
|
|
|
|
datapoint==0.4.3
|
|
|
|
|
2017-01-21 22:14:08 +00:00
|
|
|
# homeassistant.components.light.decora
|
2017-06-21 14:37:27 +00:00
|
|
|
# decora==0.6
|
2017-01-21 22:14:08 +00:00
|
|
|
|
2017-08-06 18:30:28 +00:00
|
|
|
# homeassistant.components.light.decora_wifi
|
|
|
|
# decora_wifi==1.3
|
|
|
|
|
2017-10-18 14:21:46 +00:00
|
|
|
# homeassistant.components.device_tracker.upc_connect
|
|
|
|
defusedxml==0.5.0
|
|
|
|
|
2017-10-25 13:13:11 +00:00
|
|
|
# homeassistant.components.sensor.deluge
|
2017-10-24 14:44:12 +00:00
|
|
|
# homeassistant.components.switch.deluge
|
2018-04-28 22:16:22 +00:00
|
|
|
deluge-client==1.4.0
|
2017-10-24 14:44:12 +00:00
|
|
|
|
2016-11-28 06:13:22 +00:00
|
|
|
# homeassistant.components.media_player.denonavr
|
2018-12-03 09:07:43 +00:00
|
|
|
denonavr==0.7.7
|
2016-11-28 06:13:22 +00:00
|
|
|
|
2016-07-26 06:20:56 +00:00
|
|
|
# homeassistant.components.media_player.directv
|
2018-06-02 07:30:15 +00:00
|
|
|
directpy==0.5
|
2016-07-26 06:20:56 +00:00
|
|
|
|
2017-12-18 18:10:54 +00:00
|
|
|
# homeassistant.components.sensor.discogs
|
|
|
|
discogs_client==2.2.1
|
|
|
|
|
2017-01-17 06:58:38 +00:00
|
|
|
# homeassistant.components.notify.discord
|
2017-10-02 15:16:37 +00:00
|
|
|
discord.py==0.16.12
|
2017-01-17 06:58:38 +00:00
|
|
|
|
2016-10-20 19:30:44 +00:00
|
|
|
# homeassistant.components.updater
|
2018-05-13 16:01:10 +00:00
|
|
|
distro==1.3.0
|
2016-10-20 19:30:44 +00:00
|
|
|
|
2016-12-04 07:40:22 +00:00
|
|
|
# homeassistant.components.switch.digitalloggers
|
|
|
|
dlipower==0.7.165
|
|
|
|
|
2018-11-01 20:23:06 +00:00
|
|
|
# homeassistant.components.doorbird
|
|
|
|
doorbirdpy==2.0.4
|
|
|
|
|
2016-11-03 04:20:21 +00:00
|
|
|
# homeassistant.components.sensor.dovado
|
2017-02-25 11:50:10 +00:00
|
|
|
dovado==0.4.1
|
2016-11-03 04:20:21 +00:00
|
|
|
|
2016-11-23 10:44:37 +00:00
|
|
|
# homeassistant.components.sensor.dsmr
|
2018-10-20 20:07:47 +00:00
|
|
|
dsmr_parser==0.12
|
2016-11-23 10:44:37 +00:00
|
|
|
|
2016-05-07 00:55:26 +00:00
|
|
|
# homeassistant.components.dweet
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.sensor.dweet
|
2017-05-11 20:48:03 +00:00
|
|
|
dweepy==0.3.0
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2018-09-15 23:17:47 +00:00
|
|
|
# homeassistant.components.edp_redy
|
2018-12-08 20:16:16 +00:00
|
|
|
edp_redy==0.0.3
|
2018-09-15 23:17:47 +00:00
|
|
|
|
2018-06-10 13:38:55 +00:00
|
|
|
# homeassistant.components.media_player.horizon
|
|
|
|
einder==0.3.1
|
|
|
|
|
2018-05-03 17:54:37 +00:00
|
|
|
# homeassistant.components.sensor.eliqonline
|
2018-12-14 12:25:28 +00:00
|
|
|
eliqonline==1.2.2
|
2018-05-03 17:54:37 +00:00
|
|
|
|
2018-10-07 19:45:36 +00:00
|
|
|
# homeassistant.components.elkm1
|
2018-12-05 14:31:07 +00:00
|
|
|
elkm1-lib==0.7.13
|
2018-10-07 19:45:36 +00:00
|
|
|
|
2016-05-29 21:28:03 +00:00
|
|
|
# homeassistant.components.enocean
|
2017-10-18 17:04:44 +00:00
|
|
|
enocean==0.40
|
2016-05-29 21:28:03 +00:00
|
|
|
|
2018-11-30 08:06:59 +00:00
|
|
|
# homeassistant.components.sensor.entur_public_transport
|
2018-12-14 07:33:46 +00:00
|
|
|
enturclient==0.1.2
|
2018-11-30 08:06:59 +00:00
|
|
|
|
2017-05-04 05:59:50 +00:00
|
|
|
# homeassistant.components.sensor.envirophat
|
2017-05-13 03:06:28 +00:00
|
|
|
# envirophat==0.0.6
|
2017-05-04 05:59:50 +00:00
|
|
|
|
2018-08-02 21:14:43 +00:00
|
|
|
# homeassistant.components.sensor.enphase_envoy
|
2018-10-01 12:10:32 +00:00
|
|
|
envoy_reader==0.3
|
2018-08-02 21:14:43 +00:00
|
|
|
|
2017-08-29 14:18:37 +00:00
|
|
|
# homeassistant.components.sensor.season
|
|
|
|
ephem==3.7.6.0
|
|
|
|
|
2018-06-13 05:28:59 +00:00
|
|
|
# homeassistant.components.media_player.epson
|
|
|
|
epson-projector==0.1.3
|
|
|
|
|
2018-06-08 05:46:34 +00:00
|
|
|
# homeassistant.components.netgear_lte
|
2018-09-23 16:58:09 +00:00
|
|
|
eternalegypt==0.0.5
|
2018-06-08 05:46:34 +00:00
|
|
|
|
2016-09-18 06:31:27 +00:00
|
|
|
# homeassistant.components.keyboard_remote
|
2016-09-28 07:05:38 +00:00
|
|
|
# evdev==0.6.1
|
2016-09-18 06:31:27 +00:00
|
|
|
|
2018-09-27 11:29:44 +00:00
|
|
|
# homeassistant.components.evohome
|
2016-08-19 07:17:28 +00:00
|
|
|
# homeassistant.components.climate.honeywell
|
Add zones to evohome component (#18428)
* Added Zones, and removed available() logic
flesh out Zones
tidy up init
some more tidying up
Nearly there - full functionality
passed txo - ready to send PR
Ready to PR, except to remove logging
Add Zones and associated functionality to evohome component
Add Zones to evohome (some more tidying up)
Add Zones to evohome (Nearly there - full functionality)
Add Zones to evohome (passed tox)
Add Zones to evohome (except to remove logging)
Add Zones and associated functionality to evohome component
Revert _LOGGER.warn to .debug, as it should be
Cleanup stupid REBASE
* removed a duplicate/unwanted code block
* tidy up comment
* use async_added_to_hass instead of bus.listen
* Pass evo_data instead of hass when instntiating
* switch to async version of setup_platform/add_entities
* Remove workaround for bug in client library
- using github version for now, as awaiting new PyPi package
* Avoid invalid-name lint - use 'zone_idx' instead of 'z'
* Fix line too long error
* remove commented-out line of code
* fix a logic error, improve REDACTION of potentially-sensitive infomation
* restore use of EVENT_HOMEASSISTANT_START to improve HA startup time
* added a docstring to _flatten_json
* Switch instantiation from component to platform
* Use v0.2.8 of client api (resolves logging bug)
* import rather than duplicate, and de-lint
* We use evohomeclient v0.2.8 now
* remove all the api logging
* Changed scan_interal to Throttle
* added a configurable scan_interval
* small code tidy-up, removed sub-function
* tidy up update() code
* minimize use of self.hass.data[]
* remove lint
* remove unwanted logging
* remove debug code
* correct a small coding error
* small tidyup of code
* remove flatten_json
* add @callback to _first_update()
* switch back to load_platform
* adhere to standards fro logging
* use new format string formatting
* minor change to comments
* convert scan_interval to timedelta from int
* restore rounding up of scan_interval
* code tidy up
* sync when in sync context
* fix typo
* remove raises not needed
* tidy up typos, etc.
* remove invalid-name lint
* tidy up exception handling
* de-lint/pretty-fy
* move 'status' to a JSON node, so theirs room for 'config', 'schedule' in the future
2018-11-27 11:17:22 +00:00
|
|
|
evohomeclient==0.2.8
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-05-04 14:03:50 +00:00
|
|
|
# homeassistant.components.image_processing.dlib_face_detect
|
|
|
|
# homeassistant.components.image_processing.dlib_face_identify
|
2017-09-06 14:35:34 +00:00
|
|
|
# face_recognition==1.0.0
|
2017-05-04 14:03:50 +00:00
|
|
|
|
2016-09-09 00:26:50 +00:00
|
|
|
# homeassistant.components.sensor.fastdotcom
|
2017-12-01 11:25:54 +00:00
|
|
|
fastdotcom==0.0.3
|
2016-09-09 00:26:50 +00:00
|
|
|
|
2017-02-12 20:47:27 +00:00
|
|
|
# homeassistant.components.sensor.fedex
|
2018-02-28 02:04:30 +00:00
|
|
|
fedexdeliverymanager==1.0.6
|
2017-02-12 20:47:27 +00:00
|
|
|
|
2016-04-19 15:14:36 +00:00
|
|
|
# homeassistant.components.feedreader
|
|
|
|
feedparser==5.2.1
|
|
|
|
|
Initial support for Fibaro HomeCenter hubs (#17891)
* Fibaro HC connection, initial commit
Very first steps working, connects, fetches devices, represents sensors, binary_sensors and lights towards HA.
* Cover, switch, bugfixes
Initial support for covers
Initial support for switches
Bugfixes
* Some cleanup and improved lights
pylint based cleanup
light switches handled properly
light features reported correctly
* Added status updates and actions
Lights, Blinds, Switches are mostly working now
* Code cleanup, fiblary3 req
Fiblary3 is now in pypi, set it as req
Cleanup based on pylint
* Included in .coveragerc and added how to use guide
Included the fibaro component in coveragerc
Added usage instructions to file header
* PyLint inspired fixes
Fixed pylint warnings
* PyLint inspired fixes
PyLint inspired fixes
* updated to fiblary3 0.1.5
* Minor fixes to finally pass pull req
Fixed fiblary3 to work with python 3.5
Updated fiblary3 to 0.1.6
(added energy and batteryLevel dummies)
* module import and flake8 fixes
Finally (hopefully) figured out what lint is complaining about
* Fixed color support for lights, simplified callback
Fixed color support for lights
Simplified callback for updates
Uses updated fiblary3 for color light handling
* Lean and mean refactor
While waiting for a brave reviewer, I've been making the code smaller and easier to understand.
* Minor fixes to please HoundCI
* Removed unused component
Scenes are not implemented yet
* Nicer comments.
* DEVICE_CLASS, ignore plugins, improved mapping
Added support for device class and icons in sensors and binary_sensors
Improved mapping of sensors and added heuristic matching
Added support for hidden devices
Fixed conversion to float in sensors
* Fixed dimming
Fibaro apparently does not need, nor like the extra turnOn commands for dimmers
* flake8
* Cleanup, Light fixes, switch power
Cleanup of the component to separate init from connect, handle connection error better
Improved light handling, especially for RGBW strips and working around Fibaro quirks
Added energy and power reporting to switches
* Missing comment added
Missing comment added to please flake8
* Removed everything but bin.sensors
Stripdown, hoping for a review
* better aligned comments
OMG
* Fixes based on code review
Fixes based on code review
* Implemented stopping
Implemented stopping of StateHandler thread
Cleanup for clarity
* Minor fix
Removed unnecessary list copying
* Nicer wording on shutdown
* Minor changes based on code review
* minor fixes based on code review
* removed extra line break
2018-11-14 19:58:32 +00:00
|
|
|
# homeassistant.components.fibaro
|
|
|
|
fiblary3==0.1.7
|
|
|
|
|
2018-05-17 00:45:47 +00:00
|
|
|
# homeassistant.components.sensor.fints
|
2018-10-09 17:18:46 +00:00
|
|
|
fints==1.0.1
|
2018-05-17 00:45:47 +00:00
|
|
|
|
2018-11-19 06:05:58 +00:00
|
|
|
# homeassistant.components.media_player.firetv
|
|
|
|
firetv==1.0.7
|
|
|
|
|
2016-05-07 19:46:45 +00:00
|
|
|
# homeassistant.components.sensor.fitbit
|
2017-08-19 20:47:32 +00:00
|
|
|
fitbit==0.3.0
|
2016-05-07 19:46:45 +00:00
|
|
|
|
2016-06-21 14:43:02 +00:00
|
|
|
# homeassistant.components.sensor.fixer
|
2018-07-03 10:30:56 +00:00
|
|
|
fixerio==1.0.0a0
|
2016-06-21 14:43:02 +00:00
|
|
|
|
2017-01-11 05:45:46 +00:00
|
|
|
# homeassistant.components.light.flux_led
|
2018-10-22 05:04:47 +00:00
|
|
|
flux_led==0.22
|
2017-01-11 05:45:46 +00:00
|
|
|
|
2018-03-16 02:50:58 +00:00
|
|
|
# homeassistant.components.sensor.foobot
|
2018-04-16 19:35:24 +00:00
|
|
|
foobot_async==0.3.1
|
2018-03-16 02:50:58 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.notify.free_mobile
|
2017-11-08 15:11:12 +00:00
|
|
|
freesms==0.1.2
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-01-18 10:01:31 +00:00
|
|
|
# homeassistant.components.device_tracker.fritz
|
2017-03-17 13:40:12 +00:00
|
|
|
# homeassistant.components.sensor.fritzbox_callmonitor
|
2017-02-14 07:58:23 +00:00
|
|
|
# homeassistant.components.sensor.fritzbox_netmonitor
|
2017-10-18 18:58:26 +00:00
|
|
|
# fritzconnection==0.6.5
|
2017-01-18 10:01:31 +00:00
|
|
|
|
2017-02-03 07:29:18 +00:00
|
|
|
# homeassistant.components.switch.fritzdect
|
2018-01-16 14:55:22 +00:00
|
|
|
fritzhome==1.0.4
|
2017-02-03 07:29:18 +00:00
|
|
|
|
2016-12-13 07:23:08 +00:00
|
|
|
# homeassistant.components.tts.google
|
2018-11-30 10:18:24 +00:00
|
|
|
gTTS-token==1.1.3
|
2016-12-13 07:23:08 +00:00
|
|
|
|
2017-12-05 11:32:43 +00:00
|
|
|
# homeassistant.components.sensor.gearbest
|
2018-06-06 09:38:50 +00:00
|
|
|
gearbest_parser==1.0.7
|
2017-12-05 11:32:43 +00:00
|
|
|
|
2018-08-27 07:39:11 +00:00
|
|
|
# homeassistant.components.sensor.geizhals
|
2018-12-09 22:22:33 +00:00
|
|
|
geizhals==0.0.9
|
2018-08-27 07:39:11 +00:00
|
|
|
|
2018-09-21 19:15:57 +00:00
|
|
|
# homeassistant.components.geo_location.geo_json_events
|
2018-10-14 12:11:26 +00:00
|
|
|
# homeassistant.components.geo_location.nsw_rural_fire_service_feed
|
2018-11-27 11:55:15 +00:00
|
|
|
# homeassistant.components.geo_location.usgs_earthquakes_feed
|
2018-11-01 15:32:21 +00:00
|
|
|
geojson_client==0.3
|
2018-09-21 19:15:57 +00:00
|
|
|
|
2018-10-02 08:20:51 +00:00
|
|
|
# homeassistant.components.sensor.geo_rss_events
|
2018-12-16 10:14:36 +00:00
|
|
|
georss_client==0.5
|
2018-10-02 08:20:51 +00:00
|
|
|
|
2018-11-06 11:47:53 +00:00
|
|
|
# homeassistant.components.device_tracker.googlehome
|
2018-12-01 15:28:22 +00:00
|
|
|
ghlocalapi==0.3.5
|
2018-11-06 11:47:53 +00:00
|
|
|
|
2017-06-12 04:40:06 +00:00
|
|
|
# homeassistant.components.sensor.gitter
|
2018-05-27 13:45:43 +00:00
|
|
|
gitterpy==0.1.7
|
2017-06-12 04:40:06 +00:00
|
|
|
|
2018-08-15 05:49:34 +00:00
|
|
|
# homeassistant.components.sensor.glances
|
2018-11-21 11:38:42 +00:00
|
|
|
glances_api==0.2.0
|
2018-08-15 05:49:34 +00:00
|
|
|
|
2016-03-26 01:39:08 +00:00
|
|
|
# homeassistant.components.notify.gntp
|
|
|
|
gntp==1.0.3
|
|
|
|
|
2016-11-19 06:29:20 +00:00
|
|
|
# homeassistant.components.google
|
2017-10-02 20:42:23 +00:00
|
|
|
google-api-python-client==1.6.4
|
2016-11-19 06:29:20 +00:00
|
|
|
|
2016-05-07 17:17:28 +00:00
|
|
|
# homeassistant.components.sensor.google_travel_time
|
2017-10-02 15:17:22 +00:00
|
|
|
googlemaps==2.5.1
|
2016-05-07 17:17:28 +00:00
|
|
|
|
2016-08-13 17:37:12 +00:00
|
|
|
# homeassistant.components.sensor.gpsd
|
2016-09-06 14:53:21 +00:00
|
|
|
gps3==0.33.3
|
2016-08-13 17:37:12 +00:00
|
|
|
|
2018-11-01 09:46:11 +00:00
|
|
|
# homeassistant.components.greeneye_monitor
|
|
|
|
greeneye_monitor==0.1
|
|
|
|
|
2017-12-24 00:11:45 +00:00
|
|
|
# homeassistant.components.light.greenwave
|
2018-01-25 23:00:32 +00:00
|
|
|
greenwavereality==0.5.1
|
2017-12-24 00:11:45 +00:00
|
|
|
|
2017-02-12 21:00:27 +00:00
|
|
|
# homeassistant.components.media_player.gstreamer
|
2018-10-19 16:11:47 +00:00
|
|
|
gstreamer-player==1.1.2
|
2017-02-12 21:00:27 +00:00
|
|
|
|
2016-09-15 12:35:40 +00:00
|
|
|
# homeassistant.components.ffmpeg
|
2017-10-19 08:46:32 +00:00
|
|
|
ha-ffmpeg==1.9
|
2016-08-09 00:34:46 +00:00
|
|
|
|
2016-11-03 02:19:53 +00:00
|
|
|
# homeassistant.components.media_player.philips_js
|
2018-07-09 19:35:06 +00:00
|
|
|
ha-philipsjs==0.0.5
|
2016-11-03 02:19:53 +00:00
|
|
|
|
2018-08-29 19:13:01 +00:00
|
|
|
# homeassistant.components.habitica
|
|
|
|
habitipy==0.2.0
|
|
|
|
|
2018-08-24 08:39:35 +00:00
|
|
|
# homeassistant.components.hangouts
|
2018-10-16 18:09:34 +00:00
|
|
|
hangups==0.4.6
|
2018-08-24 08:39:35 +00:00
|
|
|
|
2016-03-08 00:45:37 +00:00
|
|
|
# homeassistant.components.mqtt.server
|
2018-09-02 10:50:30 +00:00
|
|
|
hbmqtt==0.9.4
|
2016-03-08 00:45:37 +00:00
|
|
|
|
2018-09-17 20:43:31 +00:00
|
|
|
# homeassistant.components.sensor.jewish_calendar
|
2018-11-07 12:30:41 +00:00
|
|
|
hdate==0.7.5
|
2018-09-17 20:43:31 +00:00
|
|
|
|
2016-08-19 07:17:28 +00:00
|
|
|
# homeassistant.components.climate.heatmiser
|
2016-02-01 07:52:42 +00:00
|
|
|
heatmiserV3==0.9.1
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.switch.hikvisioncam
|
2017-11-16 00:15:45 +00:00
|
|
|
hikvision==0.4
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-08-16 23:26:30 +00:00
|
|
|
# homeassistant.components.notify.hipchat
|
|
|
|
hipnotify==1.0.8
|
|
|
|
|
2018-12-13 15:31:14 +00:00
|
|
|
# homeassistant.components.media_player.harman_kardon_avr
|
|
|
|
hkavr==0.0.5
|
|
|
|
|
2018-12-03 08:31:53 +00:00
|
|
|
# homeassistant.components.hlk_sw16
|
|
|
|
hlk-sw16==0.0.6
|
|
|
|
|
2018-06-17 13:38:56 +00:00
|
|
|
# homeassistant.components.sensor.pi_hole
|
|
|
|
hole==0.3.0
|
|
|
|
|
2017-03-16 06:46:13 +00:00
|
|
|
# homeassistant.components.binary_sensor.workday
|
2018-10-21 13:07:44 +00:00
|
|
|
holidays==0.9.8
|
2017-03-16 06:46:13 +00:00
|
|
|
|
2017-10-25 02:36:27 +00:00
|
|
|
# homeassistant.components.frontend
|
2018-12-11 09:29:55 +00:00
|
|
|
home-assistant-frontend==20181211.0
|
2017-10-25 02:36:27 +00:00
|
|
|
|
2018-11-06 21:08:04 +00:00
|
|
|
# homeassistant.components.zwave
|
2018-11-13 22:43:01 +00:00
|
|
|
homeassistant-pyozw==0.1.1
|
2018-11-06 21:08:04 +00:00
|
|
|
|
2018-04-13 17:25:35 +00:00
|
|
|
# homeassistant.components.homekit_controller
|
2018-07-17 08:06:06 +00:00
|
|
|
# homekit==0.10
|
2018-04-13 17:25:35 +00:00
|
|
|
|
2018-03-18 15:57:53 +00:00
|
|
|
# homeassistant.components.homematicip_cloud
|
2018-07-15 00:59:19 +00:00
|
|
|
homematicip==0.9.8
|
2018-03-18 15:57:53 +00:00
|
|
|
|
2018-07-09 19:33:58 +00:00
|
|
|
# homeassistant.components.google
|
2017-11-01 03:33:47 +00:00
|
|
|
# homeassistant.components.remember_the_milk
|
|
|
|
httplib2==0.10.3
|
|
|
|
|
2018-09-13 08:01:28 +00:00
|
|
|
# homeassistant.components.huawei_lte
|
2018-10-01 08:52:49 +00:00
|
|
|
huawei-lte-api==1.0.16
|
2018-09-13 08:01:28 +00:00
|
|
|
|
2018-05-26 16:42:52 +00:00
|
|
|
# homeassistant.components.hydrawise
|
|
|
|
hydrawiser==0.1.1
|
|
|
|
|
2017-06-22 05:09:08 +00:00
|
|
|
# homeassistant.components.sensor.bh1750
|
2017-06-21 15:24:39 +00:00
|
|
|
# homeassistant.components.sensor.bme280
|
2017-06-22 05:05:58 +00:00
|
|
|
# homeassistant.components.sensor.htu21d
|
2017-06-29 09:03:52 +00:00
|
|
|
# i2csense==0.0.4
|
2017-06-21 15:24:39 +00:00
|
|
|
|
2018-06-07 17:43:51 +00:00
|
|
|
# homeassistant.components.watson_iot
|
|
|
|
ibmiotf==0.3.4
|
|
|
|
|
2018-01-06 20:52:31 +00:00
|
|
|
# homeassistant.components.light.iglo
|
2018-03-11 04:31:57 +00:00
|
|
|
iglo==1.2.7
|
2018-01-06 20:52:31 +00:00
|
|
|
|
2018-01-20 15:29:50 +00:00
|
|
|
# homeassistant.components.ihc
|
2018-03-03 11:48:58 +00:00
|
|
|
ihcsdk==2.2.0
|
2018-01-20 15:29:50 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.influxdb
|
2016-10-27 06:48:57 +00:00
|
|
|
# homeassistant.components.sensor.influxdb
|
2018-11-25 19:52:09 +00:00
|
|
|
influxdb==5.2.0
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2018-08-22 07:09:04 +00:00
|
|
|
# homeassistant.components.insteon
|
2018-12-13 15:52:12 +00:00
|
|
|
insteonplm==0.15.2
|
2017-02-21 07:53:39 +00:00
|
|
|
|
2018-05-24 07:25:27 +00:00
|
|
|
# homeassistant.components.sensor.iperf3
|
|
|
|
iperf3==0.1.10
|
|
|
|
|
2018-10-13 19:03:30 +00:00
|
|
|
# homeassistant.components.route53
|
|
|
|
ipify==1.0.0
|
|
|
|
|
2017-06-26 20:30:25 +00:00
|
|
|
# homeassistant.components.verisure
|
|
|
|
jsonpath==0.75
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.media_player.kodi
|
2016-09-14 19:54:45 +00:00
|
|
|
# homeassistant.components.notify.kodi
|
2017-04-06 22:12:24 +00:00
|
|
|
jsonrpc-async==0.6
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-02-18 08:26:07 +00:00
|
|
|
# homeassistant.components.media_player.kodi
|
2018-03-11 19:46:16 +00:00
|
|
|
jsonrpc-websocket==0.6
|
2017-02-18 08:26:07 +00:00
|
|
|
|
2016-08-23 04:42:05 +00:00
|
|
|
# homeassistant.scripts.keyring
|
2018-12-02 07:26:23 +00:00
|
|
|
keyring==17.0.0
|
2018-01-10 03:51:35 +00:00
|
|
|
|
|
|
|
# homeassistant.scripts.keyring
|
2018-05-09 09:31:18 +00:00
|
|
|
keyrings.alt==3.1
|
2016-08-23 04:42:05 +00:00
|
|
|
|
2018-06-12 10:36:02 +00:00
|
|
|
# homeassistant.components.lock.kiwi
|
|
|
|
kiwiki-client==0.1.1
|
|
|
|
|
2018-05-15 17:58:00 +00:00
|
|
|
# homeassistant.components.konnected
|
2018-10-16 22:39:32 +00:00
|
|
|
konnected==0.1.4
|
2018-05-15 17:58:00 +00:00
|
|
|
|
2018-04-11 01:38:23 +00:00
|
|
|
# homeassistant.components.eufy
|
2018-12-07 06:32:21 +00:00
|
|
|
lakeside==0.11
|
2018-04-11 01:38:23 +00:00
|
|
|
|
2018-11-28 21:20:13 +00:00
|
|
|
# homeassistant.components.owntracks
|
2017-10-27 06:01:32 +00:00
|
|
|
libnacl==1.6.1
|
2016-10-04 07:57:37 +00:00
|
|
|
|
2017-06-14 11:56:03 +00:00
|
|
|
# homeassistant.components.dyson
|
2017-08-06 11:08:46 +00:00
|
|
|
libpurecoollink==0.4.2
|
2017-06-14 11:56:03 +00:00
|
|
|
|
2017-09-12 04:43:55 +00:00
|
|
|
# homeassistant.components.camera.foscam
|
|
|
|
libpyfoscam==1.0
|
|
|
|
|
2017-04-30 03:39:11 +00:00
|
|
|
# homeassistant.components.device_tracker.mikrotik
|
2018-11-27 12:26:52 +00:00
|
|
|
librouteros==2.2.0
|
2017-04-30 03:39:11 +00:00
|
|
|
|
2016-11-23 07:22:52 +00:00
|
|
|
# homeassistant.components.media_player.soundtouch
|
2017-07-07 05:28:09 +00:00
|
|
|
libsoundtouch==0.7.2
|
2016-11-23 07:22:52 +00:00
|
|
|
|
2017-03-30 06:00:22 +00:00
|
|
|
# homeassistant.components.light.lifx_legacy
|
|
|
|
liffylights==0.9.4
|
|
|
|
|
2017-08-01 18:36:31 +00:00
|
|
|
# homeassistant.components.light.osramlightify
|
2018-01-09 23:35:34 +00:00
|
|
|
lightify==1.0.6.1
|
2017-08-01 18:36:31 +00:00
|
|
|
|
2018-12-02 19:58:31 +00:00
|
|
|
# homeassistant.components.lightwave
|
|
|
|
lightwave==0.15
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.light.limitlessled
|
2018-10-23 05:11:55 +00:00
|
|
|
limitlessled==1.1.3
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-10-27 14:19:47 +00:00
|
|
|
# homeassistant.components.linode
|
2018-05-24 15:16:35 +00:00
|
|
|
linode-api==4.1.9b1
|
2017-10-27 14:19:47 +00:00
|
|
|
|
2017-02-03 07:52:52 +00:00
|
|
|
# homeassistant.components.media_player.liveboxplaytv
|
2017-12-13 09:58:49 +00:00
|
|
|
liveboxplaytv==2.0.2
|
2017-02-03 07:52:52 +00:00
|
|
|
|
2017-07-07 06:21:06 +00:00
|
|
|
# homeassistant.components.lametric
|
|
|
|
# homeassistant.components.notify.lametric
|
|
|
|
lmnotify==0.0.4
|
|
|
|
|
2018-03-30 20:47:20 +00:00
|
|
|
# homeassistant.components.device_tracker.google_maps
|
2018-12-06 08:29:30 +00:00
|
|
|
locationsharinglib==3.0.9
|
2018-03-30 20:47:20 +00:00
|
|
|
|
2018-09-21 10:00:15 +00:00
|
|
|
# homeassistant.components.logi_circle
|
|
|
|
logi_circle==0.1.7
|
|
|
|
|
2018-11-06 13:27:52 +00:00
|
|
|
# homeassistant.components.luftdaten
|
|
|
|
luftdaten==0.3.4
|
2017-12-12 07:09:47 +00:00
|
|
|
|
2018-11-07 11:51:12 +00:00
|
|
|
# homeassistant.components.lupusec
|
2018-12-04 21:04:39 +00:00
|
|
|
lupupy==0.0.17
|
2018-11-07 11:51:12 +00:00
|
|
|
|
2018-05-22 07:25:10 +00:00
|
|
|
# homeassistant.components.light.lw12wifi
|
|
|
|
lw12==0.9.2
|
|
|
|
|
2017-03-23 15:15:52 +00:00
|
|
|
# homeassistant.components.sensor.lyft
|
2017-09-25 20:34:48 +00:00
|
|
|
lyft_rides==0.2
|
2017-03-23 15:15:52 +00:00
|
|
|
|
2018-07-27 21:48:56 +00:00
|
|
|
# homeassistant.components.sensor.magicseaweed
|
2018-11-13 22:41:58 +00:00
|
|
|
magicseaweed==1.0.3
|
2018-07-27 21:48:56 +00:00
|
|
|
|
2018-05-05 14:00:36 +00:00
|
|
|
# homeassistant.components.matrix
|
|
|
|
matrix-client==0.2.0
|
2016-10-18 19:13:00 +00:00
|
|
|
|
2017-02-27 05:35:33 +00:00
|
|
|
# homeassistant.components.maxcube
|
|
|
|
maxcube-api==0.1.0
|
|
|
|
|
2016-03-15 17:09:19 +00:00
|
|
|
# homeassistant.components.notify.message_bird
|
2016-04-28 06:23:03 +00:00
|
|
|
messagebird==1.2.0
|
2016-03-15 17:09:19 +00:00
|
|
|
|
2018-10-29 22:22:47 +00:00
|
|
|
# homeassistant.components.sensor.meteo_france
|
|
|
|
meteofrance==0.2.7
|
|
|
|
|
2016-02-06 21:36:41 +00:00
|
|
|
# homeassistant.components.sensor.mfi
|
2016-02-06 21:48:31 +00:00
|
|
|
# homeassistant.components.switch.mfi
|
2016-03-01 01:37:41 +00:00
|
|
|
mficlient==0.3.0
|
2016-02-06 21:36:41 +00:00
|
|
|
|
2016-09-14 05:37:57 +00:00
|
|
|
# homeassistant.components.sensor.miflora
|
2018-04-20 06:43:44 +00:00
|
|
|
miflora==0.4.0
|
2016-09-14 05:37:57 +00:00
|
|
|
|
2018-10-14 18:22:20 +00:00
|
|
|
# homeassistant.components.climate.mill
|
2018-12-08 10:38:42 +00:00
|
|
|
millheater==0.3.0
|
2018-10-14 18:22:20 +00:00
|
|
|
|
2018-04-28 11:35:51 +00:00
|
|
|
# homeassistant.components.sensor.mitemp_bt
|
|
|
|
mitemp_bt==0.0.1
|
|
|
|
|
2017-08-31 14:26:33 +00:00
|
|
|
# homeassistant.components.sensor.mopar
|
2017-09-13 02:50:28 +00:00
|
|
|
motorparts==1.0.2
|
2017-08-31 14:26:33 +00:00
|
|
|
|
2017-02-07 11:07:11 +00:00
|
|
|
# homeassistant.components.tts
|
2018-09-02 10:51:36 +00:00
|
|
|
mutagen==1.41.1
|
2017-02-07 11:07:11 +00:00
|
|
|
|
2018-01-15 20:50:56 +00:00
|
|
|
# homeassistant.components.mychevy
|
2018-12-05 10:42:27 +00:00
|
|
|
mychevy==1.0.1
|
2018-01-15 20:50:56 +00:00
|
|
|
|
2017-08-27 20:53:20 +00:00
|
|
|
# homeassistant.components.mycroft
|
2017-09-05 11:05:31 +00:00
|
|
|
mycroftapi==2.0
|
2017-08-27 20:53:20 +00:00
|
|
|
|
2017-08-18 21:47:36 +00:00
|
|
|
# homeassistant.components.usps
|
2018-02-18 05:49:32 +00:00
|
|
|
myusps==1.3.2
|
2017-01-05 08:44:15 +00:00
|
|
|
|
2017-06-03 14:01:51 +00:00
|
|
|
# homeassistant.components.media_player.nad
|
2017-06-09 18:53:07 +00:00
|
|
|
# homeassistant.components.media_player.nadtcp
|
2018-01-20 05:41:12 +00:00
|
|
|
nad_receiver==0.0.9
|
2017-06-03 14:01:51 +00:00
|
|
|
|
2018-04-12 07:24:07 +00:00
|
|
|
# homeassistant.components.light.nanoleaf_aurora
|
2018-04-06 13:34:56 +00:00
|
|
|
nanoleaf==0.4.1
|
|
|
|
|
2018-07-31 09:14:49 +00:00
|
|
|
# homeassistant.components.device_tracker.keenetic_ndms2
|
2018-12-13 09:01:41 +00:00
|
|
|
ndms2_client==0.0.6
|
2018-07-31 09:14:49 +00:00
|
|
|
|
2018-05-29 14:03:00 +00:00
|
|
|
# homeassistant.components.sensor.netdata
|
|
|
|
netdata==0.1.2
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.discovery
|
2018-10-18 08:39:33 +00:00
|
|
|
netdisco==2.2.0
|
2016-01-21 01:02:32 +00:00
|
|
|
|
2016-02-15 23:54:07 +00:00
|
|
|
# homeassistant.components.sensor.neurio_energy
|
2017-01-26 12:07:50 +00:00
|
|
|
neurio==0.3.1
|
2016-02-15 23:54:07 +00:00
|
|
|
|
2018-11-12 14:59:53 +00:00
|
|
|
# homeassistant.components.light.niko_home_control
|
|
|
|
niko-home-control==0.1.8
|
|
|
|
|
2017-10-27 20:19:12 +00:00
|
|
|
# homeassistant.components.sensor.nederlandse_spoorwegen
|
|
|
|
nsapi==2.7.4
|
|
|
|
|
2018-06-14 11:56:04 +00:00
|
|
|
# homeassistant.components.sensor.nsw_fuel_station
|
|
|
|
nsw-fuel-api-client==1.0.10
|
|
|
|
|
2017-11-11 06:22:37 +00:00
|
|
|
# homeassistant.components.nuheat
|
2017-12-24 16:43:56 +00:00
|
|
|
nuheat==0.3.0
|
2017-11-11 06:22:37 +00:00
|
|
|
|
2017-10-25 15:33:17 +00:00
|
|
|
# homeassistant.components.binary_sensor.trend
|
2017-06-08 09:26:24 +00:00
|
|
|
# homeassistant.components.image_processing.opencv
|
2018-11-02 20:57:03 +00:00
|
|
|
# homeassistant.components.image_processing.tensorflow
|
2018-11-02 14:48:22 +00:00
|
|
|
# homeassistant.components.sensor.pollen
|
2018-11-16 13:14:40 +00:00
|
|
|
numpy==1.15.4
|
2017-05-03 04:55:51 +00:00
|
|
|
|
2016-11-19 06:29:20 +00:00
|
|
|
# homeassistant.components.google
|
2017-02-12 17:55:17 +00:00
|
|
|
oauth2client==4.0.0
|
2016-11-19 06:29:20 +00:00
|
|
|
|
2017-02-13 15:45:04 +00:00
|
|
|
# homeassistant.components.climate.oem
|
|
|
|
oemthermostat==1.1
|
|
|
|
|
2017-05-09 05:13:29 +00:00
|
|
|
# homeassistant.components.media_player.onkyo
|
2017-08-21 09:25:34 +00:00
|
|
|
onkyo-eiscp==1.2.4
|
2017-05-09 05:13:29 +00:00
|
|
|
|
2017-06-16 05:28:17 +00:00
|
|
|
# homeassistant.components.camera.onvif
|
|
|
|
onvif-py3==0.1.3
|
|
|
|
|
2017-01-30 20:29:56 +00:00
|
|
|
# homeassistant.components.sensor.openevse
|
2017-02-03 02:46:35 +00:00
|
|
|
openevsewifi==0.4
|
2017-01-30 20:29:56 +00:00
|
|
|
|
2017-02-22 22:01:06 +00:00
|
|
|
# homeassistant.components.media_player.openhome
|
2017-06-09 04:41:24 +00:00
|
|
|
openhomedevice==0.4.2
|
2017-02-22 22:01:06 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.switch.orvibo
|
|
|
|
orvibo==1.1.1
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.mqtt
|
2017-06-17 10:34:12 +00:00
|
|
|
# homeassistant.components.shiftr
|
2018-09-18 12:59:39 +00:00
|
|
|
paho-mqtt==1.4.0
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2018-11-21 13:22:24 +00:00
|
|
|
# homeassistant.components.media_player.panasonic_bluray
|
|
|
|
panacotta==0.1
|
|
|
|
|
2016-04-06 05:51:55 +00:00
|
|
|
# homeassistant.components.media_player.panasonic_viera
|
2018-02-13 16:06:30 +00:00
|
|
|
panasonic_viera==0.3.1
|
2016-04-06 05:51:55 +00:00
|
|
|
|
2016-11-28 07:42:57 +00:00
|
|
|
# homeassistant.components.media_player.dunehd
|
|
|
|
pdunehd==1.3
|
|
|
|
|
2016-02-02 21:49:11 +00:00
|
|
|
# homeassistant.components.device_tracker.aruba
|
2016-11-09 20:36:57 +00:00
|
|
|
# homeassistant.components.device_tracker.cisco_ios
|
2017-11-17 19:47:40 +00:00
|
|
|
# homeassistant.components.device_tracker.unifi_direct
|
2016-06-13 01:35:12 +00:00
|
|
|
# homeassistant.components.media_player.pandora
|
2018-07-07 14:48:02 +00:00
|
|
|
pexpect==4.6.0
|
2016-02-02 21:49:11 +00:00
|
|
|
|
2017-05-10 05:36:33 +00:00
|
|
|
# homeassistant.components.rpi_pfio
|
2018-11-02 13:44:20 +00:00
|
|
|
pifacecommon==4.2.2
|
2017-05-10 05:36:33 +00:00
|
|
|
|
|
|
|
# homeassistant.components.rpi_pfio
|
|
|
|
pifacedigitalio==3.0.5
|
|
|
|
|
2017-01-24 08:41:33 +00:00
|
|
|
# homeassistant.components.light.piglow
|
|
|
|
piglow==1.2.4
|
|
|
|
|
2016-08-10 02:45:40 +00:00
|
|
|
# homeassistant.components.pilight
|
2016-10-19 20:02:11 +00:00
|
|
|
pilight==0.1.1
|
2016-08-10 02:45:40 +00:00
|
|
|
|
2018-03-09 02:23:52 +00:00
|
|
|
# homeassistant.components.camera.proxy
|
2018-11-02 20:57:03 +00:00
|
|
|
# homeassistant.components.image_processing.tensorflow
|
2018-12-01 23:30:02 +00:00
|
|
|
pillow==5.3.0
|
2018-03-09 02:23:52 +00:00
|
|
|
|
2017-11-24 01:21:24 +00:00
|
|
|
# homeassistant.components.dominos
|
|
|
|
pizzapi==0.0.3
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.media_player.plex
|
2016-06-15 06:07:00 +00:00
|
|
|
# homeassistant.components.sensor.plex
|
2018-03-09 16:50:39 +00:00
|
|
|
plexapi==3.0.6
|
2016-01-15 17:28:32 +00:00
|
|
|
|
2018-12-14 13:42:04 +00:00
|
|
|
# homeassistant.components.plum_lightpad
|
|
|
|
plumlightpad==0.0.11
|
|
|
|
|
2016-08-24 16:54:34 +00:00
|
|
|
# homeassistant.components.sensor.mhz19
|
2016-08-07 20:14:01 +00:00
|
|
|
# homeassistant.components.sensor.serial_pm
|
2017-02-27 19:19:11 +00:00
|
|
|
pmsensor==0.4
|
2016-08-07 20:14:01 +00:00
|
|
|
|
2017-05-07 00:22:38 +00:00
|
|
|
# homeassistant.components.sensor.pocketcasts
|
|
|
|
pocketcasts==0.1
|
|
|
|
|
2018-05-02 18:37:41 +00:00
|
|
|
# homeassistant.components.sensor.postnl
|
2018-06-02 11:45:48 +00:00
|
|
|
postnl_api==1.0.2
|
2018-05-02 18:37:41 +00:00
|
|
|
|
2016-08-19 07:17:28 +00:00
|
|
|
# homeassistant.components.climate.proliphix
|
2016-11-18 10:05:05 +00:00
|
|
|
proliphix==0.4.1
|
2016-01-09 13:51:49 +00:00
|
|
|
|
2017-07-11 04:20:17 +00:00
|
|
|
# homeassistant.components.prometheus
|
2018-06-28 14:49:33 +00:00
|
|
|
prometheus_client==0.2.0
|
2017-07-11 04:20:17 +00:00
|
|
|
|
2018-11-02 20:57:03 +00:00
|
|
|
# homeassistant.components.image_processing.tensorflow
|
|
|
|
protobuf==3.6.1
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.sensor.systemmonitor
|
2018-11-01 13:03:18 +00:00
|
|
|
psutil==5.4.8
|
2016-02-01 07:52:42 +00:00
|
|
|
|
2016-06-29 21:16:53 +00:00
|
|
|
# homeassistant.components.wink
|
2017-03-28 18:13:45 +00:00
|
|
|
pubnubsub-handler==1.0.2
|
2016-06-29 21:16:53 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.notify.pushbullet
|
2017-04-22 12:01:30 +00:00
|
|
|
# homeassistant.components.sensor.pushbullet
|
2017-07-29 06:22:35 +00:00
|
|
|
pushbullet.py==0.11.0
|
2016-02-01 07:52:42 +00:00
|
|
|
|
|
|
|
# homeassistant.components.notify.pushetta
|
|
|
|
pushetta==1.0.15
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-04-20 06:32:20 +00:00
|
|
|
# homeassistant.components.light.rpi_gpio_pwm
|
2018-09-15 08:08:52 +00:00
|
|
|
pwmled==1.3.0
|
2017-04-20 06:32:20 +00:00
|
|
|
|
2018-02-18 08:24:51 +00:00
|
|
|
# homeassistant.components.august
|
2018-11-19 10:53:27 +00:00
|
|
|
py-august==0.7.0
|
2018-02-18 08:24:51 +00:00
|
|
|
|
2017-12-08 09:40:45 +00:00
|
|
|
# homeassistant.components.canary
|
2018-03-30 21:38:29 +00:00
|
|
|
py-canary==0.5.0
|
2017-12-08 09:40:45 +00:00
|
|
|
|
2015-11-17 08:18:42 +00:00
|
|
|
# homeassistant.components.sensor.cpuspeed
|
2018-04-02 09:58:22 +00:00
|
|
|
py-cpuinfo==4.0.0
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2018-02-03 02:17:01 +00:00
|
|
|
# homeassistant.components.melissa
|
2018-10-30 20:29:11 +00:00
|
|
|
py-melissa-climate==2.0.0
|
2018-02-03 02:17:01 +00:00
|
|
|
|
2017-09-29 10:02:48 +00:00
|
|
|
# homeassistant.components.camera.synology
|
2018-03-11 19:33:36 +00:00
|
|
|
py-synology==0.2.0
|
2017-09-29 10:02:48 +00:00
|
|
|
|
2018-11-08 05:25:08 +00:00
|
|
|
# homeassistant.components.sensor.seventeentrack
|
2018-12-01 04:12:55 +00:00
|
|
|
py17track==2.1.1
|
2018-11-08 05:25:08 +00:00
|
|
|
|
2017-01-20 20:39:18 +00:00
|
|
|
# homeassistant.components.hdmi_cec
|
2017-02-11 12:53:45 +00:00
|
|
|
pyCEC==0.4.13
|
2017-01-20 20:39:18 +00:00
|
|
|
|
2017-07-26 07:04:40 +00:00
|
|
|
# homeassistant.components.light.tplink
|
2017-01-14 06:20:47 +00:00
|
|
|
# homeassistant.components.switch.tplink
|
2018-09-08 22:34:22 +00:00
|
|
|
pyHS100==0.3.3
|
2017-01-14 06:20:47 +00:00
|
|
|
|
2018-09-20 08:32:14 +00:00
|
|
|
# homeassistant.components.weather.met
|
2018-10-07 19:00:12 +00:00
|
|
|
pyMetno==0.3.0
|
2018-09-20 08:32:14 +00:00
|
|
|
|
2016-03-14 07:25:04 +00:00
|
|
|
# homeassistant.components.rfxtrx
|
2018-09-06 10:50:55 +00:00
|
|
|
pyRFXtrx==0.23
|
2016-03-14 07:25:04 +00:00
|
|
|
|
2018-09-12 19:10:04 +00:00
|
|
|
# homeassistant.components.switch.switchmate
|
2018-11-29 18:13:08 +00:00
|
|
|
pySwitchmate==0.4.4
|
2018-09-12 19:10:04 +00:00
|
|
|
|
2018-10-04 07:29:49 +00:00
|
|
|
# homeassistant.components.tibber
|
2018-12-07 18:33:06 +00:00
|
|
|
pyTibber==0.8.6
|
2017-10-04 08:31:42 +00:00
|
|
|
|
2017-07-11 20:44:01 +00:00
|
|
|
# homeassistant.components.switch.dlink
|
2017-09-01 13:27:43 +00:00
|
|
|
pyW215==0.6.0
|
2017-07-11 20:44:01 +00:00
|
|
|
|
2018-11-08 17:49:00 +00:00
|
|
|
# homeassistant.components.w800rf32
|
|
|
|
pyW800rf32==0.1
|
|
|
|
|
2018-08-22 22:21:46 +00:00
|
|
|
# homeassistant.components.sensor.noaa_tides
|
|
|
|
# py_noaa==0.3.0
|
|
|
|
|
2017-12-05 08:44:22 +00:00
|
|
|
# homeassistant.components.ads
|
|
|
|
pyads==2.2.6
|
|
|
|
|
2017-09-08 14:05:51 +00:00
|
|
|
# homeassistant.components.sensor.airvisual
|
2018-06-14 13:30:47 +00:00
|
|
|
pyairvisual==2.0.1
|
2017-09-08 14:05:51 +00:00
|
|
|
|
2017-03-29 06:21:40 +00:00
|
|
|
# homeassistant.components.alarm_control_panel.alarmdotcom
|
2018-05-05 14:21:58 +00:00
|
|
|
pyalarmdotcom==0.3.2
|
2017-03-29 06:21:40 +00:00
|
|
|
|
2017-05-31 07:25:25 +00:00
|
|
|
# homeassistant.components.arlo
|
2018-10-21 17:54:51 +00:00
|
|
|
pyarlo==0.2.2
|
2017-05-31 07:25:25 +00:00
|
|
|
|
2018-06-05 15:55:53 +00:00
|
|
|
# homeassistant.components.netatmo
|
2018-11-30 13:45:40 +00:00
|
|
|
pyatmo==1.4
|
2018-06-05 15:55:53 +00:00
|
|
|
|
2017-07-05 04:37:18 +00:00
|
|
|
# homeassistant.components.apple_tv
|
2018-12-07 10:06:38 +00:00
|
|
|
pyatv==0.3.12
|
2017-02-07 08:55:19 +00:00
|
|
|
|
2016-10-14 02:43:51 +00:00
|
|
|
# homeassistant.components.device_tracker.bbox
|
2016-10-22 04:34:22 +00:00
|
|
|
# homeassistant.components.sensor.bbox
|
2016-10-14 02:43:51 +00:00
|
|
|
pybbox==0.0.5-alpha
|
|
|
|
|
2018-04-19 09:35:38 +00:00
|
|
|
# homeassistant.components.media_player.blackbird
|
|
|
|
pyblackbird==0.5
|
|
|
|
|
2016-04-19 15:18:46 +00:00
|
|
|
# homeassistant.components.device_tracker.bluetooth_tracker
|
|
|
|
# pybluez==0.22
|
|
|
|
|
2018-06-24 09:06:25 +00:00
|
|
|
# homeassistant.components.neato
|
2018-09-23 07:41:45 +00:00
|
|
|
pybotvac==0.0.10
|
2018-06-24 09:06:25 +00:00
|
|
|
|
2018-07-09 21:11:54 +00:00
|
|
|
# homeassistant.components.cloudflare
|
|
|
|
pycfdns==0.0.1
|
|
|
|
|
2018-03-07 08:33:13 +00:00
|
|
|
# homeassistant.components.media_player.channels
|
|
|
|
pychannels==1.0.0
|
|
|
|
|
2018-06-14 19:17:54 +00:00
|
|
|
# homeassistant.components.cast
|
2018-03-23 21:02:52 +00:00
|
|
|
pychromecast==2.1.0
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2016-06-25 07:06:36 +00:00
|
|
|
# homeassistant.components.media_player.cmus
|
2018-05-12 05:51:48 +00:00
|
|
|
pycmus==0.1.1
|
2016-06-25 07:06:36 +00:00
|
|
|
|
2017-06-28 16:04:54 +00:00
|
|
|
# homeassistant.components.comfoconnect
|
|
|
|
pycomfoconnect==0.3
|
|
|
|
|
2017-10-25 17:43:21 +00:00
|
|
|
# homeassistant.components.tts.microsoft
|
2017-12-01 11:38:20 +00:00
|
|
|
pycsspeechtts==1.0.2
|
2017-10-25 17:43:21 +00:00
|
|
|
|
2016-11-03 08:31:50 +00:00
|
|
|
# homeassistant.components.sensor.cups
|
|
|
|
# pycups==1.9.73
|
|
|
|
|
2018-01-04 10:05:27 +00:00
|
|
|
# homeassistant.components.daikin
|
|
|
|
# homeassistant.components.climate.daikin
|
2018-11-20 13:14:11 +00:00
|
|
|
pydaikin==0.8
|
2018-01-04 10:05:27 +00:00
|
|
|
|
2018-01-01 16:08:13 +00:00
|
|
|
# homeassistant.components.deconz
|
2018-09-04 07:24:42 +00:00
|
|
|
pydeconz==47
|
2018-01-01 16:08:13 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.zwave
|
|
|
|
pydispatcher==2.0.5
|
2015-12-16 20:22:38 +00:00
|
|
|
|
2017-03-08 15:46:41 +00:00
|
|
|
# homeassistant.components.android_ip_webcam
|
2017-04-05 04:40:19 +00:00
|
|
|
pydroid-ipcam==0.8
|
2017-03-08 15:46:41 +00:00
|
|
|
|
2018-07-02 14:55:34 +00:00
|
|
|
# homeassistant.components.sensor.duke_energy
|
|
|
|
pydukeenergy==0.0.6
|
|
|
|
|
2018-05-29 14:23:12 +00:00
|
|
|
# homeassistant.components.sensor.ebox
|
|
|
|
pyebox==1.1.4
|
|
|
|
|
2018-10-13 21:16:44 +00:00
|
|
|
# homeassistant.components.water_heater.econet
|
2018-09-12 01:45:51 +00:00
|
|
|
pyeconet==0.0.6
|
2017-12-29 18:05:58 +00:00
|
|
|
|
2018-03-04 19:36:38 +00:00
|
|
|
# homeassistant.components.switch.edimax
|
|
|
|
pyedimax==0.1
|
|
|
|
|
2017-05-02 15:38:27 +00:00
|
|
|
# homeassistant.components.eight_sleep
|
2018-12-15 04:25:12 +00:00
|
|
|
pyeight==0.1.0
|
2017-05-02 15:38:27 +00:00
|
|
|
|
2016-10-31 12:29:08 +00:00
|
|
|
# homeassistant.components.media_player.emby
|
2018-03-08 23:23:51 +00:00
|
|
|
pyemby==1.5
|
2016-10-31 12:29:08 +00:00
|
|
|
|
2016-06-19 17:45:07 +00:00
|
|
|
# homeassistant.components.envisalink
|
2018-10-03 04:28:08 +00:00
|
|
|
pyenvisalink==3.7
|
2016-06-19 17:45:07 +00:00
|
|
|
|
2017-10-23 13:52:39 +00:00
|
|
|
# homeassistant.components.climate.ephember
|
2018-08-12 15:48:15 +00:00
|
|
|
pyephember==0.2.0
|
2017-10-23 13:52:39 +00:00
|
|
|
|
2017-02-15 20:21:38 +00:00
|
|
|
# homeassistant.components.sensor.fido
|
2018-04-17 02:16:28 +00:00
|
|
|
pyfido==2.1.1
|
2017-02-15 20:21:38 +00:00
|
|
|
|
2017-06-13 05:06:47 +00:00
|
|
|
# homeassistant.components.climate.flexit
|
|
|
|
pyflexit==0.3
|
|
|
|
|
2018-06-19 08:31:21 +00:00
|
|
|
# homeassistant.components.binary_sensor.flic
|
|
|
|
pyflic-homeassistant==0.4.dev0
|
|
|
|
|
2018-11-09 15:23:07 +00:00
|
|
|
# homeassistant.components.sensor.flunearyou
|
2018-12-17 01:51:56 +00:00
|
|
|
pyflunearyou==1.0.0
|
2018-11-09 15:23:07 +00:00
|
|
|
|
2018-07-27 09:11:32 +00:00
|
|
|
# homeassistant.components.light.futurenow
|
2018-07-30 05:09:59 +00:00
|
|
|
pyfnip==0.2
|
2018-07-27 09:11:32 +00:00
|
|
|
|
2018-04-17 10:40:36 +00:00
|
|
|
# homeassistant.components.fritzbox
|
2018-10-01 10:53:25 +00:00
|
|
|
pyfritzhome==0.4.0
|
2018-04-17 10:40:36 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.ifttt
|
|
|
|
pyfttt==0.3
|
2015-12-16 19:54:25 +00:00
|
|
|
|
2018-09-14 11:49:20 +00:00
|
|
|
# homeassistant.components.device_tracker.bluetooth_le_tracker
|
2018-05-14 19:52:54 +00:00
|
|
|
# homeassistant.components.sensor.skybeacon
|
|
|
|
pygatt==3.2.0
|
|
|
|
|
2018-04-06 13:53:00 +00:00
|
|
|
# homeassistant.components.cover.gogogate2
|
2018-05-08 15:42:18 +00:00
|
|
|
pygogogate2==0.1.1
|
2018-04-06 13:53:00 +00:00
|
|
|
|
2018-07-15 19:32:20 +00:00
|
|
|
# homeassistant.components.sensor.gtfs
|
2018-12-09 22:32:48 +00:00
|
|
|
pygtfs==0.1.5
|
2018-07-15 19:32:20 +00:00
|
|
|
|
2016-12-01 20:48:08 +00:00
|
|
|
# homeassistant.components.remote.harmony
|
2018-01-29 23:54:49 +00:00
|
|
|
pyharmony==1.0.20
|
2016-12-01 20:48:08 +00:00
|
|
|
|
2018-11-01 08:20:30 +00:00
|
|
|
# homeassistant.components.sensor.version
|
2018-11-13 20:00:21 +00:00
|
|
|
pyhaversion==2.0.3
|
2018-11-01 08:20:30 +00:00
|
|
|
|
2016-12-13 07:10:16 +00:00
|
|
|
# homeassistant.components.binary_sensor.hikvision
|
2018-03-01 04:33:03 +00:00
|
|
|
pyhik==0.1.8
|
2016-12-13 07:10:16 +00:00
|
|
|
|
2017-11-23 12:10:23 +00:00
|
|
|
# homeassistant.components.hive
|
2018-04-16 19:00:13 +00:00
|
|
|
pyhiveapi==0.2.14
|
2017-11-23 12:10:23 +00:00
|
|
|
|
2016-06-24 08:06:58 +00:00
|
|
|
# homeassistant.components.homematic
|
2018-12-06 08:25:39 +00:00
|
|
|
pyhomematic==0.1.53
|
2016-06-24 08:06:58 +00:00
|
|
|
|
2017-02-16 09:22:21 +00:00
|
|
|
# homeassistant.components.sensor.hydroquebec
|
2018-04-17 00:52:56 +00:00
|
|
|
pyhydroquebec==2.2.2
|
2017-02-16 09:22:21 +00:00
|
|
|
|
2017-12-03 15:48:12 +00:00
|
|
|
# homeassistant.components.alarm_control_panel.ialarm
|
2018-11-06 14:30:41 +00:00
|
|
|
pyialarm==0.3
|
2017-12-03 15:48:12 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.device_tracker.icloud
|
2016-07-26 21:53:31 +00:00
|
|
|
pyicloud==0.9.1
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2018-06-03 21:01:48 +00:00
|
|
|
# homeassistant.components.weather.ipma
|
2018-11-23 00:09:45 +00:00
|
|
|
pyipma==1.1.6
|
2018-06-03 21:01:48 +00:00
|
|
|
|
2017-10-22 12:18:34 +00:00
|
|
|
# homeassistant.components.sensor.irish_rail_transport
|
|
|
|
pyirishrail==0.0.2
|
|
|
|
|
2017-01-24 09:02:17 +00:00
|
|
|
# homeassistant.components.binary_sensor.iss
|
2016-12-26 15:02:11 +00:00
|
|
|
pyiss==1.0.1
|
|
|
|
|
2017-02-13 10:10:34 +00:00
|
|
|
# homeassistant.components.remote.itach
|
2017-10-03 06:17:36 +00:00
|
|
|
pyitachip2ir==0.0.7
|
2017-02-13 10:10:34 +00:00
|
|
|
|
2017-05-13 04:12:47 +00:00
|
|
|
# homeassistant.components.kira
|
|
|
|
pykira==0.1.1
|
|
|
|
|
2017-03-06 16:37:29 +00:00
|
|
|
# homeassistant.components.sensor.kwb
|
|
|
|
pykwb==0.0.8
|
|
|
|
|
2017-11-03 07:59:11 +00:00
|
|
|
# homeassistant.components.sensor.lacrosse
|
2018-01-15 21:49:17 +00:00
|
|
|
pylacrosse==0.3.1
|
2017-11-03 07:59:11 +00:00
|
|
|
|
2016-05-15 20:11:41 +00:00
|
|
|
# homeassistant.components.sensor.lastfm
|
2018-08-08 20:32:21 +00:00
|
|
|
pylast==2.4.0
|
2016-05-15 20:11:41 +00:00
|
|
|
|
2018-11-09 21:24:26 +00:00
|
|
|
# homeassistant.components.sensor.launch_library
|
2018-11-08 15:37:11 +00:00
|
|
|
pylaunches==0.1.2
|
|
|
|
|
2018-07-02 07:57:26 +00:00
|
|
|
# homeassistant.components.media_player.lg_netcast
|
|
|
|
pylgnetcast-homeassistant==0.2.0.dev0
|
|
|
|
|
2017-04-19 23:36:11 +00:00
|
|
|
# homeassistant.components.media_player.webostv
|
|
|
|
# homeassistant.components.notify.webostv
|
2018-10-17 20:56:54 +00:00
|
|
|
pylgtv==0.1.9
|
2017-04-19 23:36:11 +00:00
|
|
|
|
2018-09-24 06:09:34 +00:00
|
|
|
# homeassistant.components.sensor.linky
|
2018-10-20 13:30:10 +00:00
|
|
|
pylinky==0.1.8
|
2018-09-24 06:09:34 +00:00
|
|
|
|
2016-11-02 03:44:25 +00:00
|
|
|
# homeassistant.components.litejet
|
|
|
|
pylitejet==0.1
|
|
|
|
|
2016-03-31 16:00:43 +00:00
|
|
|
# homeassistant.components.sensor.loopenergy
|
2018-03-01 16:05:18 +00:00
|
|
|
pyloopenergy==0.0.18
|
2016-03-31 16:00:43 +00:00
|
|
|
|
2017-05-08 00:32:13 +00:00
|
|
|
# homeassistant.components.lutron_caseta
|
2018-04-20 13:35:56 +00:00
|
|
|
pylutron-caseta==0.5.0
|
2017-05-08 00:32:13 +00:00
|
|
|
|
2017-05-20 11:27:35 +00:00
|
|
|
# homeassistant.components.lutron
|
|
|
|
pylutron==0.1.0
|
|
|
|
|
2017-05-04 17:34:00 +00:00
|
|
|
# homeassistant.components.notify.mailgun
|
|
|
|
pymailgunner==1.4
|
|
|
|
|
2018-02-03 13:29:55 +00:00
|
|
|
# homeassistant.components.media_player.mediaroom
|
2018-08-02 18:13:48 +00:00
|
|
|
pymediaroom==0.6.4
|
2018-02-03 13:29:55 +00:00
|
|
|
|
2018-02-16 23:09:20 +00:00
|
|
|
# homeassistant.components.media_player.xiaomi_tv
|
2018-06-05 17:13:16 +00:00
|
|
|
pymitv==1.4.0
|
2018-02-16 23:09:20 +00:00
|
|
|
|
2016-10-25 04:49:49 +00:00
|
|
|
# homeassistant.components.mochad
|
2018-01-30 13:13:30 +00:00
|
|
|
pymochad==0.2.0
|
2016-10-25 04:49:49 +00:00
|
|
|
|
2017-05-20 19:19:22 +00:00
|
|
|
# homeassistant.components.modbus
|
2017-07-04 15:01:35 +00:00
|
|
|
pymodbus==1.3.1
|
2017-05-20 19:19:22 +00:00
|
|
|
|
2017-10-18 09:11:36 +00:00
|
|
|
# homeassistant.components.media_player.monoprice
|
2017-12-22 09:26:34 +00:00
|
|
|
pymonoprice==0.3
|
2017-10-18 09:11:36 +00:00
|
|
|
|
2017-09-05 16:07:58 +00:00
|
|
|
# homeassistant.components.media_player.yamaha_musiccast
|
2017-12-11 21:29:52 +00:00
|
|
|
pymusiccast==0.1.6
|
2017-09-05 16:07:58 +00:00
|
|
|
|
2017-06-03 15:12:36 +00:00
|
|
|
# homeassistant.components.cover.myq
|
2018-11-18 17:37:03 +00:00
|
|
|
pymyq==1.0.0
|
2017-06-03 15:12:36 +00:00
|
|
|
|
2017-05-07 00:22:38 +00:00
|
|
|
# homeassistant.components.mysensors
|
2018-11-04 20:08:27 +00:00
|
|
|
pymysensors==0.18.0
|
2017-05-07 00:22:38 +00:00
|
|
|
|
2017-08-14 08:02:37 +00:00
|
|
|
# homeassistant.components.lock.nello
|
2018-11-12 14:54:08 +00:00
|
|
|
pynello==2.0.2
|
2017-08-14 08:02:37 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.device_tracker.netgear
|
2018-11-06 00:00:46 +00:00
|
|
|
pynetgear==0.5.1
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2016-06-10 06:40:14 +00:00
|
|
|
# homeassistant.components.switch.netio
|
2018-10-13 19:09:10 +00:00
|
|
|
pynetio==0.1.9.1
|
2016-06-10 06:40:14 +00:00
|
|
|
|
2017-02-02 14:15:27 +00:00
|
|
|
# homeassistant.components.lock.nuki
|
2017-08-07 12:58:31 +00:00
|
|
|
pynuki==1.3.1
|
2017-02-02 14:15:27 +00:00
|
|
|
|
2016-12-01 07:58:16 +00:00
|
|
|
# homeassistant.components.sensor.nut
|
|
|
|
pynut2==2.1.2
|
|
|
|
|
2016-02-05 23:11:47 +00:00
|
|
|
# homeassistant.components.alarm_control_panel.nx584
|
2016-02-15 23:07:31 +00:00
|
|
|
# homeassistant.components.binary_sensor.nx584
|
2017-01-03 07:19:33 +00:00
|
|
|
pynx584==0.4
|
2016-02-05 23:11:47 +00:00
|
|
|
|
2018-08-02 05:42:12 +00:00
|
|
|
# homeassistant.components.openuv
|
2018-09-04 07:22:44 +00:00
|
|
|
pyopenuv==1.0.4
|
2018-08-02 05:42:12 +00:00
|
|
|
|
2018-09-25 18:49:37 +00:00
|
|
|
# homeassistant.components.light.opple
|
|
|
|
pyoppleio==1.0.5
|
|
|
|
|
2018-01-25 18:46:48 +00:00
|
|
|
# homeassistant.components.iota
|
2018-05-13 15:58:57 +00:00
|
|
|
pyota==2.0.5
|
2018-01-25 18:46:48 +00:00
|
|
|
|
2018-10-09 19:06:24 +00:00
|
|
|
# homeassistant.components.opentherm_gw
|
2018-11-07 08:55:22 +00:00
|
|
|
pyotgw==0.3b1
|
2018-09-07 16:16:19 +00:00
|
|
|
|
2018-09-24 09:06:50 +00:00
|
|
|
# homeassistant.auth.mfa_modules.notify
|
2018-08-26 20:38:52 +00:00
|
|
|
# homeassistant.auth.mfa_modules.totp
|
2017-07-07 04:25:54 +00:00
|
|
|
# homeassistant.components.sensor.otp
|
|
|
|
pyotp==2.2.6
|
|
|
|
|
2015-11-17 08:18:42 +00:00
|
|
|
# homeassistant.components.sensor.openweathermap
|
2016-10-25 04:53:03 +00:00
|
|
|
# homeassistant.components.weather.openweathermap
|
2018-07-29 21:37:38 +00:00
|
|
|
pyowm==2.9.0
|
2015-09-04 15:51:25 +00:00
|
|
|
|
2018-08-09 17:58:16 +00:00
|
|
|
# homeassistant.components.media_player.pjlink
|
|
|
|
pypjlink2==1.2.0
|
|
|
|
|
2018-11-19 11:52:21 +00:00
|
|
|
# homeassistant.components.point
|
2018-11-22 15:43:10 +00:00
|
|
|
pypoint==1.0.6
|
2018-11-19 11:52:21 +00:00
|
|
|
|
2018-01-26 17:40:02 +00:00
|
|
|
# homeassistant.components.sensor.pollen
|
2018-11-01 18:36:42 +00:00
|
|
|
pypollencom==2.2.2
|
2018-01-26 17:40:02 +00:00
|
|
|
|
2016-12-29 09:08:11 +00:00
|
|
|
# homeassistant.components.qwikswitch
|
2018-04-21 06:34:42 +00:00
|
|
|
pyqwikswitch==0.8
|
2016-12-29 09:08:11 +00:00
|
|
|
|
2018-12-14 08:52:34 +00:00
|
|
|
# homeassistant.components.sensor.nmbs
|
|
|
|
pyrail==0.0.3
|
|
|
|
|
2017-12-25 09:07:18 +00:00
|
|
|
# homeassistant.components.rainbird
|
2018-05-25 04:39:41 +00:00
|
|
|
pyrainbird==0.1.6
|
2017-10-11 13:56:18 +00:00
|
|
|
|
2018-10-09 08:13:03 +00:00
|
|
|
# homeassistant.components.switch.recswitch
|
|
|
|
pyrecswitch==1.0.2
|
|
|
|
|
2018-11-06 18:49:38 +00:00
|
|
|
# homeassistant.components.sensor.ruter
|
2018-11-07 18:54:33 +00:00
|
|
|
pyruter==1.1.0
|
2018-11-06 18:49:38 +00:00
|
|
|
|
2018-05-07 07:35:55 +00:00
|
|
|
# homeassistant.components.sabnzbd
|
2018-10-15 22:18:59 +00:00
|
|
|
pysabnzbd==1.1.0
|
2018-02-11 17:33:56 +00:00
|
|
|
|
2017-05-03 00:23:36 +00:00
|
|
|
# homeassistant.components.climate.sensibo
|
2018-05-10 19:11:02 +00:00
|
|
|
pysensibo==1.0.3
|
2017-05-03 00:23:36 +00:00
|
|
|
|
2017-10-18 09:20:19 +00:00
|
|
|
# homeassistant.components.sensor.serial
|
|
|
|
pyserial-asyncio==0.4
|
|
|
|
|
2016-05-04 01:23:38 +00:00
|
|
|
# homeassistant.components.switch.acer_projector
|
2016-09-02 13:42:38 +00:00
|
|
|
pyserial==3.1.1
|
2016-05-04 01:23:38 +00:00
|
|
|
|
2017-06-05 05:06:18 +00:00
|
|
|
# homeassistant.components.lock.sesame
|
2017-06-08 22:21:56 +00:00
|
|
|
pysesame==0.1.0
|
2017-06-05 05:06:18 +00:00
|
|
|
|
2018-01-28 13:04:40 +00:00
|
|
|
# homeassistant.components.goalfeed
|
2018-12-04 08:52:30 +00:00
|
|
|
pysher==1.0.1
|
2018-01-28 13:04:40 +00:00
|
|
|
|
2017-01-09 20:35:47 +00:00
|
|
|
# homeassistant.components.sensor.sma
|
2018-10-31 19:09:00 +00:00
|
|
|
pysma==0.2.2
|
2017-01-09 20:35:47 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.device_tracker.snmp
|
2016-06-09 04:16:43 +00:00
|
|
|
# homeassistant.components.sensor.snmp
|
2017-10-25 14:09:29 +00:00
|
|
|
# homeassistant.components.switch.snmp
|
2018-11-25 16:59:14 +00:00
|
|
|
pysnmp==4.4.6
|
2015-09-09 03:11:25 +00:00
|
|
|
|
2018-09-20 21:50:11 +00:00
|
|
|
# homeassistant.components.sonos
|
2018-11-17 12:18:51 +00:00
|
|
|
pysonos==0.0.5
|
2018-09-20 21:50:11 +00:00
|
|
|
|
2018-09-24 08:10:10 +00:00
|
|
|
# homeassistant.components.spc
|
|
|
|
pyspcwebgw==0.4.0
|
|
|
|
|
2018-03-16 03:36:03 +00:00
|
|
|
# homeassistant.components.notify.stride
|
|
|
|
pystride==0.1.7
|
|
|
|
|
2018-03-18 16:26:33 +00:00
|
|
|
# homeassistant.components.sensor.syncthru
|
|
|
|
pysyncthru==0.3.1
|
|
|
|
|
2018-11-03 22:47:31 +00:00
|
|
|
# homeassistant.components.sensor.tautulli
|
2018-12-01 12:07:32 +00:00
|
|
|
pytautulli==0.4.1
|
2018-11-03 22:47:31 +00:00
|
|
|
|
2017-12-13 09:58:49 +00:00
|
|
|
# homeassistant.components.media_player.liveboxplaytv
|
2018-04-06 09:21:05 +00:00
|
|
|
pyteleloisirs==3.4
|
2017-12-13 09:58:49 +00:00
|
|
|
|
2017-05-02 16:15:02 +00:00
|
|
|
# homeassistant.components.sensor.thinkingcleaner
|
|
|
|
# homeassistant.components.switch.thinkingcleaner
|
|
|
|
pythinkingcleaner==0.0.3
|
|
|
|
|
2017-06-05 05:48:38 +00:00
|
|
|
# homeassistant.components.sensor.blockchain
|
|
|
|
python-blockchain-api==0.0.2
|
|
|
|
|
2017-02-16 14:34:34 +00:00
|
|
|
# homeassistant.components.media_player.clementine
|
|
|
|
python-clementine-remote==1.0.1
|
|
|
|
|
2016-09-30 16:30:44 +00:00
|
|
|
# homeassistant.components.digital_ocean
|
2017-12-27 08:20:44 +00:00
|
|
|
python-digitalocean==1.13.2
|
2016-09-30 16:30:44 +00:00
|
|
|
|
2017-05-04 05:48:43 +00:00
|
|
|
# homeassistant.components.ecobee
|
2018-04-14 01:36:46 +00:00
|
|
|
python-ecobee-api==0.0.18
|
2017-05-04 05:48:43 +00:00
|
|
|
|
2017-01-14 05:34:35 +00:00
|
|
|
# homeassistant.components.climate.eq3btsmart
|
2018-02-18 23:37:42 +00:00
|
|
|
# python-eq3bt==0.1.9
|
2017-01-14 05:34:35 +00:00
|
|
|
|
2017-06-05 05:48:04 +00:00
|
|
|
# homeassistant.components.sensor.etherscan
|
2018-01-26 05:08:08 +00:00
|
|
|
python-etherscan-api==0.0.3
|
2017-06-05 05:48:04 +00:00
|
|
|
|
2018-05-14 20:52:35 +00:00
|
|
|
# homeassistant.components.camera.familyhub
|
|
|
|
python-family-hub-local==0.0.2
|
|
|
|
|
2016-10-05 19:42:58 +00:00
|
|
|
# homeassistant.components.sensor.darksky
|
2018-01-07 21:59:32 +00:00
|
|
|
# homeassistant.components.weather.darksky
|
2018-03-17 16:43:07 +00:00
|
|
|
python-forecastio==1.4.0
|
2015-09-11 23:38:42 +00:00
|
|
|
|
2017-10-30 07:40:14 +00:00
|
|
|
# homeassistant.components.gc100
|
2017-11-09 16:54:45 +00:00
|
|
|
python-gc100==1.0.3a
|
2017-10-30 07:40:14 +00:00
|
|
|
|
2018-09-25 09:18:23 +00:00
|
|
|
# homeassistant.components.sensor.gitlab_ci
|
|
|
|
python-gitlab==1.6.0
|
|
|
|
|
2016-08-16 06:19:11 +00:00
|
|
|
# homeassistant.components.sensor.hp_ilo
|
2016-11-21 16:31:14 +00:00
|
|
|
python-hpilo==3.9
|
2016-08-16 06:19:11 +00:00
|
|
|
|
2017-05-04 05:48:43 +00:00
|
|
|
# homeassistant.components.joaoapps_join
|
|
|
|
# homeassistant.components.notify.joaoapps_join
|
2017-05-04 20:14:14 +00:00
|
|
|
python-join-api==0.0.2
|
2017-05-04 05:48:43 +00:00
|
|
|
|
2017-06-05 15:39:31 +00:00
|
|
|
# homeassistant.components.juicenet
|
|
|
|
python-juicenet==0.0.5
|
|
|
|
|
2016-05-24 04:47:46 +00:00
|
|
|
# homeassistant.components.lirc
|
2016-10-11 06:44:41 +00:00
|
|
|
# python-lirc==1.2.3
|
2016-05-23 05:19:10 +00:00
|
|
|
|
2018-04-02 17:45:12 +00:00
|
|
|
# homeassistant.components.device_tracker.xiaomi_miio
|
2017-10-25 06:50:01 +00:00
|
|
|
# homeassistant.components.fan.xiaomi_miio
|
2017-09-14 22:49:03 +00:00
|
|
|
# homeassistant.components.light.xiaomi_miio
|
2018-02-06 18:47:24 +00:00
|
|
|
# homeassistant.components.remote.xiaomi_miio
|
2018-03-16 21:13:04 +00:00
|
|
|
# homeassistant.components.sensor.xiaomi_miio
|
2017-10-09 05:11:11 +00:00
|
|
|
# homeassistant.components.switch.xiaomi_miio
|
2017-09-14 22:49:03 +00:00
|
|
|
# homeassistant.components.vacuum.xiaomi_miio
|
2018-12-05 17:19:30 +00:00
|
|
|
python-miio==0.4.4
|
2017-07-07 04:44:34 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.media_player.mpd
|
2018-04-17 09:55:35 +00:00
|
|
|
python-mpd2==1.0.0
|
2015-09-21 15:45:52 +00:00
|
|
|
|
2017-04-18 16:03:56 +00:00
|
|
|
# homeassistant.components.light.mystrom
|
2016-07-15 16:02:20 +00:00
|
|
|
# homeassistant.components.switch.mystrom
|
2018-06-10 09:38:23 +00:00
|
|
|
python-mystrom==0.4.4
|
2016-07-15 16:02:20 +00:00
|
|
|
|
2017-02-07 21:55:49 +00:00
|
|
|
# homeassistant.components.nest
|
2018-11-20 11:18:46 +00:00
|
|
|
python-nest==4.0.5
|
2017-02-07 21:55:49 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.device_tracker.nmap_tracker
|
2016-07-31 20:47:46 +00:00
|
|
|
python-nmap==0.6.1
|
2015-12-16 20:22:38 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.notify.pushover
|
2017-08-19 15:00:07 +00:00
|
|
|
python-pushover==0.3
|
2015-12-21 09:24:22 +00:00
|
|
|
|
2018-11-29 19:40:26 +00:00
|
|
|
# homeassistant.components.sensor.qbittorrent
|
|
|
|
python-qbittorrent==0.3.1
|
|
|
|
|
2017-06-07 08:24:07 +00:00
|
|
|
# homeassistant.components.sensor.ripple
|
2017-12-13 20:21:14 +00:00
|
|
|
python-ripple-api==0.0.3
|
2017-06-07 08:24:07 +00:00
|
|
|
|
2017-05-10 03:23:19 +00:00
|
|
|
# homeassistant.components.media_player.roku
|
2018-01-20 05:56:56 +00:00
|
|
|
python-roku==3.1.5
|
2017-05-10 03:23:19 +00:00
|
|
|
|
2017-12-28 20:39:24 +00:00
|
|
|
# homeassistant.components.sensor.sochain
|
|
|
|
python-sochain-api==0.0.2
|
|
|
|
|
2018-02-27 21:21:56 +00:00
|
|
|
# homeassistant.components.media_player.songpal
|
2018-12-12 22:05:55 +00:00
|
|
|
python-songpal==0.0.9.1
|
2018-02-27 21:21:56 +00:00
|
|
|
|
2016-11-03 04:17:29 +00:00
|
|
|
# homeassistant.components.sensor.synologydsm
|
2018-07-04 05:46:01 +00:00
|
|
|
python-synology==0.2.0
|
2016-11-03 04:17:29 +00:00
|
|
|
|
2017-07-02 19:54:59 +00:00
|
|
|
# homeassistant.components.tado
|
2018-04-02 08:36:38 +00:00
|
|
|
python-tado==0.2.3
|
2017-07-02 19:54:59 +00:00
|
|
|
|
2017-05-10 04:42:17 +00:00
|
|
|
# homeassistant.components.telegram_bot
|
2018-10-14 15:08:17 +00:00
|
|
|
python-telegram-bot==11.1.0
|
2015-10-07 21:45:24 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.sensor.twitch
|
2018-09-14 10:08:33 +00:00
|
|
|
python-twitch-client==0.6.0
|
2015-10-09 12:13:05 +00:00
|
|
|
|
2017-07-26 12:03:29 +00:00
|
|
|
# homeassistant.components.velbus
|
2018-11-02 13:43:17 +00:00
|
|
|
python-velbus==2.0.21
|
2017-07-26 12:03:29 +00:00
|
|
|
|
2016-12-11 22:59:12 +00:00
|
|
|
# homeassistant.components.media_player.vlc
|
|
|
|
python-vlc==1.1.2
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.wink
|
2018-09-13 07:35:40 +00:00
|
|
|
python-wink==1.10.1
|
2015-10-15 10:13:35 +00:00
|
|
|
|
Add Awair sensor platform (#18570)
* Awair Sensor Platform
This commit adds a sensor platform for Awair devices, by accessing
their beta API. Awair heavily rate-limits this API, so we throttle
updates based on the number of devices found. We also allow for the
user to bypass API device listing entirely, because the device list
endpoint is limited to only 6 calls per day. A crashing or restarting
server would quickly hit that limit.
This sensor platform uses the python_awair library (also written
as part of this PR), which is available for async usage.
* Disable pylint warning for broad try/catch
It's true that this is generally not a great idea, but we really don't
want to crash here. If we can't set up the platform, logging it and
continuing is the right answer.
* Add space to satisfy the linter
* Awair platform PR feedback
- Bump python_awair to 0.0.2, which has support for more granular exceptions
- Ensure we have python_awair available in test
- Raise PlatformNotReady if we can't set up Awair
- Make the 'Awair score' its own sensor, rather than exposing it other ways
- Set the platform up as polling, and set a sensible default
- Pass in throttling parameters to the underlying data class, rather
than use hacky global variable access to dynamically set the interval
- Switch to dict access for required variables
- Use pytest coroutines, set up components via async_setup_component,
and test/modify/assert in generally better ways
- Commit test data as fixtures
* Awair PR feedback, volume 2
- Don't force updates in test, instead modify time itself and let
homeassistant update things "normally".
- Remove unneeded polling attribute
- Rename timestamp attribute to 'last_api_update', to better reflect
that it is the timestamp of the last time the Awair API servers
received data from this device.
- Use that attribute to flag the component as unavailable when data
is stale. My own Awair device periodically goes offline and it really
hardly indicates that at all.
- Dynamically set fixture timestamps to the test run utcnow() value,
so that we don't have to worry about ancient timestamps in tests
blowing up down the line.
- Don't assert on entities directly, for the most part. Find desired
attributes in ... the attributes dict.
* Patch an instance of utcnow I overlooked
* Switch to using a context manager for timestream modification
Honestly, it's just a lot easier to keep track of patches. Moreover,
the ones I seem to have missed are now caught, and tests seem to
consistently pass.
Also, switch test_throttle_async_update to manipulating time more
explicitly.
* Missing blank line, thank you hound
* Fix pydocstyle error
I very much need to set up a script to do this quickly w/o tox, because
running flake8 is not enough!
* PR feedback
* PR feedback
2018-11-25 08:01:19 +00:00
|
|
|
# homeassistant.components.sensor.awair
|
2018-11-30 07:47:05 +00:00
|
|
|
python_awair==0.0.3
|
Add Awair sensor platform (#18570)
* Awair Sensor Platform
This commit adds a sensor platform for Awair devices, by accessing
their beta API. Awair heavily rate-limits this API, so we throttle
updates based on the number of devices found. We also allow for the
user to bypass API device listing entirely, because the device list
endpoint is limited to only 6 calls per day. A crashing or restarting
server would quickly hit that limit.
This sensor platform uses the python_awair library (also written
as part of this PR), which is available for async usage.
* Disable pylint warning for broad try/catch
It's true that this is generally not a great idea, but we really don't
want to crash here. If we can't set up the platform, logging it and
continuing is the right answer.
* Add space to satisfy the linter
* Awair platform PR feedback
- Bump python_awair to 0.0.2, which has support for more granular exceptions
- Ensure we have python_awair available in test
- Raise PlatformNotReady if we can't set up Awair
- Make the 'Awair score' its own sensor, rather than exposing it other ways
- Set the platform up as polling, and set a sensible default
- Pass in throttling parameters to the underlying data class, rather
than use hacky global variable access to dynamically set the interval
- Switch to dict access for required variables
- Use pytest coroutines, set up components via async_setup_component,
and test/modify/assert in generally better ways
- Commit test data as fixtures
* Awair PR feedback, volume 2
- Don't force updates in test, instead modify time itself and let
homeassistant update things "normally".
- Remove unneeded polling attribute
- Rename timestamp attribute to 'last_api_update', to better reflect
that it is the timestamp of the last time the Awair API servers
received data from this device.
- Use that attribute to flag the component as unavailable when data
is stale. My own Awair device periodically goes offline and it really
hardly indicates that at all.
- Dynamically set fixture timestamps to the test run utcnow() value,
so that we don't have to worry about ancient timestamps in tests
blowing up down the line.
- Don't assert on entities directly, for the most part. Find desired
attributes in ... the attributes dict.
* Patch an instance of utcnow I overlooked
* Switch to using a context manager for timestream modification
Honestly, it's just a lot easier to keep track of patches. Moreover,
the ones I seem to have missed are now caught, and tests seem to
consistently pass.
Also, switch test_throttle_async_update to manipulating time more
explicitly.
* Missing blank line, thank you hound
* Fix pydocstyle error
I very much need to set up a script to do this quickly w/o tox, because
running flake8 is not enough!
* PR feedback
* PR feedback
2018-11-25 08:01:19 +00:00
|
|
|
|
2017-09-16 06:13:30 +00:00
|
|
|
# homeassistant.components.sensor.swiss_public_transport
|
2018-09-20 06:45:16 +00:00
|
|
|
python_opendata_transport==0.1.4
|
2017-09-16 06:13:30 +00:00
|
|
|
|
2018-03-02 11:50:00 +00:00
|
|
|
# homeassistant.components.egardia
|
2018-03-22 17:53:52 +00:00
|
|
|
pythonegardia==1.0.39
|
2017-08-05 20:04:00 +00:00
|
|
|
|
2017-10-24 07:34:06 +00:00
|
|
|
# homeassistant.components.sensor.whois
|
|
|
|
pythonwhois==2.4.3
|
|
|
|
|
2017-11-11 22:21:03 +00:00
|
|
|
# homeassistant.components.device_tracker.tile
|
2018-11-13 02:10:03 +00:00
|
|
|
pytile==2.0.5
|
2017-11-11 22:21:03 +00:00
|
|
|
|
2018-01-06 10:23:24 +00:00
|
|
|
# homeassistant.components.climate.touchline
|
2018-02-05 08:33:07 +00:00
|
|
|
pytouchline==0.7
|
2018-01-06 10:23:24 +00:00
|
|
|
|
2018-11-05 08:28:02 +00:00
|
|
|
# homeassistant.components.device_tracker.traccar
|
2018-12-16 19:09:45 +00:00
|
|
|
pytraccar==0.2.0
|
2018-11-05 08:28:02 +00:00
|
|
|
|
2017-01-12 23:16:05 +00:00
|
|
|
# homeassistant.components.device_tracker.trackr
|
|
|
|
pytrackr==0.0.5
|
|
|
|
|
2017-04-16 21:37:39 +00:00
|
|
|
# homeassistant.components.tradfri
|
2018-10-05 07:59:34 +00:00
|
|
|
pytradfri[async]==6.0.1
|
2017-04-13 17:04:42 +00:00
|
|
|
|
2018-08-27 04:19:51 +00:00
|
|
|
# homeassistant.components.sensor.trafikverket_weatherstation
|
|
|
|
pytrafikverket==0.1.5.8
|
|
|
|
|
2016-12-06 05:35:54 +00:00
|
|
|
# homeassistant.components.device_tracker.unifi
|
2017-06-17 18:09:27 +00:00
|
|
|
pyunifi==2.13
|
2016-12-06 05:35:54 +00:00
|
|
|
|
2018-06-10 08:28:53 +00:00
|
|
|
# homeassistant.components.binary_sensor.uptimerobot
|
2018-06-10 08:58:45 +00:00
|
|
|
pyuptimerobot==0.0.5
|
2018-06-10 08:28:53 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.keyboard
|
2016-09-12 04:59:48 +00:00
|
|
|
# pyuserinput==0.1.11
|
2016-02-01 07:52:42 +00:00
|
|
|
|
2016-03-15 09:17:09 +00:00
|
|
|
# homeassistant.components.vera
|
2018-10-14 07:26:34 +00:00
|
|
|
pyvera==0.2.45
|
2015-10-15 15:13:02 +00:00
|
|
|
|
2018-03-14 07:10:47 +00:00
|
|
|
# homeassistant.components.switch.vesync
|
|
|
|
pyvesync==0.1.1
|
|
|
|
|
2017-07-11 20:55:46 +00:00
|
|
|
# homeassistant.components.media_player.vizio
|
2018-12-05 21:00:49 +00:00
|
|
|
pyvizio==0.0.4
|
2017-07-11 20:55:46 +00:00
|
|
|
|
2017-07-08 14:12:19 +00:00
|
|
|
# homeassistant.components.velux
|
|
|
|
pyvlx==0.1.3
|
|
|
|
|
2016-11-18 21:03:44 +00:00
|
|
|
# homeassistant.components.notify.html5
|
2018-03-05 02:46:09 +00:00
|
|
|
pywebpush==1.6.0
|
2016-11-18 21:03:44 +00:00
|
|
|
|
2016-02-19 06:57:32 +00:00
|
|
|
# homeassistant.components.wemo
|
2018-11-30 21:03:32 +00:00
|
|
|
pywemo==0.4.33
|
2015-11-09 04:10:30 +00:00
|
|
|
|
2018-01-25 22:48:38 +00:00
|
|
|
# homeassistant.components.camera.xeoma
|
2018-03-23 17:22:01 +00:00
|
|
|
pyxeoma==1.4.0
|
2018-01-25 22:48:38 +00:00
|
|
|
|
2017-01-17 08:41:37 +00:00
|
|
|
# homeassistant.components.zabbix
|
|
|
|
pyzabbix==0.7.4
|
|
|
|
|
2017-02-02 20:29:04 +00:00
|
|
|
# homeassistant.components.sensor.qnap
|
2018-09-02 10:51:25 +00:00
|
|
|
qnapstats==0.2.7
|
2017-02-02 20:29:04 +00:00
|
|
|
|
2018-10-10 06:23:31 +00:00
|
|
|
# homeassistant.components.device_tracker.quantum_gateway
|
|
|
|
quantum-gateway==0.0.3
|
|
|
|
|
2018-07-01 15:54:51 +00:00
|
|
|
# homeassistant.components.rachio
|
|
|
|
rachiopy==0.1.3
|
2017-06-22 11:34:00 +00:00
|
|
|
|
2016-08-19 07:17:28 +00:00
|
|
|
# homeassistant.components.climate.radiotherm
|
2018-12-09 22:27:31 +00:00
|
|
|
radiotherm==2.0.0
|
2015-12-27 11:32:08 +00:00
|
|
|
|
2017-09-29 08:08:41 +00:00
|
|
|
# homeassistant.components.raincloud
|
2018-06-16 10:58:18 +00:00
|
|
|
raincloudy==0.0.5
|
2017-09-29 08:08:41 +00:00
|
|
|
|
2017-05-05 07:02:47 +00:00
|
|
|
# homeassistant.components.raspihats
|
raspihats: unmet dependency fix (#9638)
* raspihats: update to 2.2.3 (deps fix)
Raspihats platform update, upstream fixed enum34 requirements, added smbus dependency
Fixes #9547
* raspihats: update to 2.2.3, smbus-cffi dependency
Raspihats platform update, upstream fixed enum34 requirements, added smbus dependency
Fixes #9547
* raspihats: update to 2.2.3
* raspihats: update to 2.2.3, smbus-cffi dependency
* raspihats: update to 2.2.3, smbus-cffi dependency
* raspihats: update to 2.2.3 (deps fix)
Raspihats platform update, upstream fixed enum34 requirements, added smbus dependency
Fixes #9547
* raspihats: update to 2.2.3, smbus-cffi dependency
2017-10-02 06:05:24 +00:00
|
|
|
# raspihats==2.2.3
|
2017-05-05 07:02:47 +00:00
|
|
|
|
2018-04-28 13:46:58 +00:00
|
|
|
# homeassistant.components.rainmachine
|
2018-11-14 20:23:49 +00:00
|
|
|
regenmaschine==1.0.7
|
2017-08-08 07:49:25 +00:00
|
|
|
|
2017-06-09 10:38:40 +00:00
|
|
|
# homeassistant.components.python_script
|
2018-12-01 23:11:47 +00:00
|
|
|
restrictedpython==4.0b7
|
2017-06-09 10:38:40 +00:00
|
|
|
|
2017-01-31 16:11:52 +00:00
|
|
|
# homeassistant.components.rflink
|
2018-03-30 02:45:25 +00:00
|
|
|
rflink==0.0.37
|
2017-01-31 16:11:52 +00:00
|
|
|
|
2017-03-31 15:53:56 +00:00
|
|
|
# homeassistant.components.ring
|
2018-10-29 22:27:12 +00:00
|
|
|
ring_doorbell==0.2.2
|
2017-03-05 08:03:00 +00:00
|
|
|
|
2018-08-02 05:01:40 +00:00
|
|
|
# homeassistant.components.device_tracker.ritassist
|
2018-08-18 07:40:29 +00:00
|
|
|
ritassist==0.9.2
|
2018-08-02 05:01:40 +00:00
|
|
|
|
2017-10-09 07:38:48 +00:00
|
|
|
# homeassistant.components.notify.rocketchat
|
|
|
|
rocketchat-API==0.6.1
|
|
|
|
|
2017-08-06 09:08:45 +00:00
|
|
|
# homeassistant.components.vacuum.roomba
|
2017-08-11 09:22:22 +00:00
|
|
|
roombapy==1.3.1
|
2017-08-06 09:08:45 +00:00
|
|
|
|
2016-04-26 09:35:01 +00:00
|
|
|
# homeassistant.components.switch.rpi_rf
|
2017-01-29 01:05:24 +00:00
|
|
|
# rpi-rf==0.9.6
|
2016-04-26 09:35:01 +00:00
|
|
|
|
2017-05-07 00:22:38 +00:00
|
|
|
# homeassistant.components.media_player.russound_rnet
|
2017-10-21 18:56:37 +00:00
|
|
|
russound==0.1.9
|
2017-05-07 00:22:38 +00:00
|
|
|
|
2017-07-31 12:42:55 +00:00
|
|
|
# homeassistant.components.media_player.russound_rio
|
2017-09-15 09:40:40 +00:00
|
|
|
russound_rio==0.1.4
|
2017-07-31 12:42:55 +00:00
|
|
|
|
2016-03-23 22:29:21 +00:00
|
|
|
# homeassistant.components.media_player.yamaha
|
2017-10-09 15:58:53 +00:00
|
|
|
rxv==0.5.1
|
2016-03-23 22:29:21 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.media_player.samsungtv
|
2018-02-28 06:37:12 +00:00
|
|
|
samsungctl[websocket]==0.7.1
|
2015-12-16 20:22:38 +00:00
|
|
|
|
2017-09-18 15:42:31 +00:00
|
|
|
# homeassistant.components.satel_integra
|
|
|
|
satel_integra==0.1.0
|
|
|
|
|
2016-02-21 11:18:18 +00:00
|
|
|
# homeassistant.components.sensor.deutsche_bahn
|
2018-03-12 21:02:36 +00:00
|
|
|
schiene==0.22
|
2016-02-21 11:18:18 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.scsgate
|
|
|
|
scsgate==0.1.0
|
2015-11-10 08:40:23 +00:00
|
|
|
|
2016-02-27 21:44:39 +00:00
|
|
|
# homeassistant.components.notify.sendgrid
|
2018-08-22 05:16:21 +00:00
|
|
|
sendgrid==5.6.0
|
2016-02-27 21:44:39 +00:00
|
|
|
|
2017-04-30 04:34:31 +00:00
|
|
|
# homeassistant.components.light.sensehat
|
2016-12-11 23:46:55 +00:00
|
|
|
# homeassistant.components.sensor.sensehat
|
|
|
|
sense-hat==2.2.0
|
|
|
|
|
2018-11-02 09:13:14 +00:00
|
|
|
# homeassistant.components.sense
|
|
|
|
sense_energy==0.5.1
|
2018-02-28 22:29:24 +00:00
|
|
|
|
2016-12-04 06:09:49 +00:00
|
|
|
# homeassistant.components.media_player.aquostv
|
2017-01-03 22:38:21 +00:00
|
|
|
sharp_aquos_rc==0.3.2
|
2016-12-04 06:09:49 +00:00
|
|
|
|
2017-08-10 15:27:49 +00:00
|
|
|
# homeassistant.components.sensor.shodan
|
2018-10-09 20:37:50 +00:00
|
|
|
shodan==1.10.4
|
2017-08-10 15:27:49 +00:00
|
|
|
|
2018-05-31 21:58:03 +00:00
|
|
|
# homeassistant.components.notify.simplepush
|
|
|
|
simplepush==1.1.4
|
|
|
|
|
2018-10-12 17:07:47 +00:00
|
|
|
# homeassistant.components.simplisafe
|
2018-11-27 18:40:49 +00:00
|
|
|
simplisafe-python==3.1.14
|
2017-02-19 01:47:52 +00:00
|
|
|
|
2018-07-29 05:34:43 +00:00
|
|
|
# homeassistant.components.sisyphus
|
|
|
|
sisyphus-control==2.1
|
|
|
|
|
2017-10-08 18:14:39 +00:00
|
|
|
# homeassistant.components.skybell
|
2018-12-07 18:20:05 +00:00
|
|
|
skybellpy==0.2.0
|
2017-10-08 18:14:39 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.notify.slack
|
2018-12-09 10:34:53 +00:00
|
|
|
slacker==0.12.0
|
2016-01-13 02:15:14 +00:00
|
|
|
|
2016-09-13 22:11:50 +00:00
|
|
|
# homeassistant.components.sleepiq
|
|
|
|
sleepyq==0.6
|
|
|
|
|
2018-10-13 08:37:42 +00:00
|
|
|
# homeassistant.components.notify.xmpp
|
XMPP HTTP upload (#17426)
* notify.xmpp: first working http upload
* extension guessing for upload
* docstrings, flake8, pylint
* hass.async_add_executor_job(...)
* catch more errors, allow unverified SSL request
allow user to specify unverified SSL request to URL
cleaner code
catch more exceptions
* pylint
* catching XMPP exceptions, timeout for requests call
removed calls for roster and presence
added timeout for upload request call
cleared up debug, info, warning messages
cleared up requests call for secure and insecure retrieval of image
catching IqError, IqTimeout, XMPPError from slixmpp
docstring updated
* added timout for http upload of local files
* timeout, mimetypes, random filenames
guessing filetypes and mimetypes with stdlib mimetypes
setting a random filename for privacy
working around slixmpp timeout issues with asyncio.wait_for
* code cleanup
* added file upload for rooms/groupchats
* version bump for slixmpp to 1.4.1
added NotConnectedError, removed double catches of IqErrors
removed asyncio import
* slixmpp 1.4.1 in requirements_all
* added url and path templating
* Minor changes
* fixed review requests
fixed possible path issue for foo/../bar/ paths
fixed possible access for non-whitelisted files
fixed None or X
fixed try-else block, moved else block into try
fixed raising error in upload_file if url is None
fixed using data.get after it's already been checked
fixed added docstring for tiny get_url function
2018-11-04 08:17:05 +00:00
|
|
|
slixmpp==1.4.1
|
2018-10-13 08:37:42 +00:00
|
|
|
|
2018-02-18 22:34:28 +00:00
|
|
|
# homeassistant.components.smappee
|
2018-07-24 08:41:24 +00:00
|
|
|
smappy==0.2.16
|
2018-02-18 22:34:28 +00:00
|
|
|
|
raspihats: unmet dependency fix (#9638)
* raspihats: update to 2.2.3 (deps fix)
Raspihats platform update, upstream fixed enum34 requirements, added smbus dependency
Fixes #9547
* raspihats: update to 2.2.3, smbus-cffi dependency
Raspihats platform update, upstream fixed enum34 requirements, added smbus dependency
Fixes #9547
* raspihats: update to 2.2.3
* raspihats: update to 2.2.3, smbus-cffi dependency
* raspihats: update to 2.2.3, smbus-cffi dependency
* raspihats: update to 2.2.3 (deps fix)
Raspihats platform update, upstream fixed enum34 requirements, added smbus dependency
Fixes #9547
* raspihats: update to 2.2.3, smbus-cffi dependency
2017-10-02 06:05:24 +00:00
|
|
|
# homeassistant.components.raspihats
|
2017-06-22 05:09:08 +00:00
|
|
|
# homeassistant.components.sensor.bh1750
|
2017-06-21 15:24:39 +00:00
|
|
|
# homeassistant.components.sensor.bme280
|
2018-01-23 07:51:52 +00:00
|
|
|
# homeassistant.components.sensor.bme680
|
2017-05-05 18:37:54 +00:00
|
|
|
# homeassistant.components.sensor.envirophat
|
2017-06-22 05:05:58 +00:00
|
|
|
# homeassistant.components.sensor.htu21d
|
2017-05-13 03:06:28 +00:00
|
|
|
# smbus-cffi==0.5.1
|
2017-05-05 18:37:54 +00:00
|
|
|
|
2018-10-08 21:54:55 +00:00
|
|
|
# homeassistant.components.smhi
|
2018-10-25 08:16:09 +00:00
|
|
|
smhi-pkg==1.0.5
|
2018-10-08 21:54:55 +00:00
|
|
|
|
2016-02-09 23:29:28 +00:00
|
|
|
# homeassistant.components.media_player.snapcast
|
2018-10-18 09:06:32 +00:00
|
|
|
snapcast==2.0.9
|
2016-02-09 23:29:28 +00:00
|
|
|
|
2018-05-01 20:27:20 +00:00
|
|
|
# homeassistant.components.sensor.socialblade
|
|
|
|
socialbladeclient==0.2
|
|
|
|
|
2016-08-19 07:17:28 +00:00
|
|
|
# homeassistant.components.climate.honeywell
|
2018-04-17 03:24:20 +00:00
|
|
|
somecomfort==0.5.2
|
2016-02-13 22:00:47 +00:00
|
|
|
|
2016-02-04 23:21:37 +00:00
|
|
|
# homeassistant.components.sensor.speedtest
|
2018-05-26 15:35:16 +00:00
|
|
|
speedtest-cli==2.0.2
|
2018-07-25 09:51:48 +00:00
|
|
|
|
|
|
|
# homeassistant.components.spider
|
2018-07-29 17:49:36 +00:00
|
|
|
spiderpy==1.2.0
|
2016-02-04 23:21:37 +00:00
|
|
|
|
2018-02-22 07:47:15 +00:00
|
|
|
# homeassistant.components.sensor.spotcrime
|
2018-03-14 07:01:10 +00:00
|
|
|
spotcrime==1.0.3
|
2018-02-22 07:47:15 +00:00
|
|
|
|
2018-06-16 19:52:23 +00:00
|
|
|
# homeassistant.components.media_player.spotify
|
|
|
|
spotipy-homeassistant==2.4.4.dev1
|
|
|
|
|
2016-07-02 18:22:51 +00:00
|
|
|
# homeassistant.components.recorder
|
2018-02-08 07:32:39 +00:00
|
|
|
# homeassistant.components.sensor.sql
|
2018-11-16 13:15:53 +00:00
|
|
|
sqlalchemy==1.2.14
|
2016-07-02 18:22:51 +00:00
|
|
|
|
2018-11-08 18:19:30 +00:00
|
|
|
# homeassistant.components.sensor.srp_energy
|
|
|
|
srpenergy==1.0.5
|
|
|
|
|
2018-09-18 13:55:10 +00:00
|
|
|
# homeassistant.components.sensor.starlingbank
|
|
|
|
starlingbank==1.2
|
|
|
|
|
2016-07-03 22:21:18 +00:00
|
|
|
# homeassistant.components.statsd
|
|
|
|
statsd==3.2.1
|
|
|
|
|
2016-02-20 23:08:18 +00:00
|
|
|
# homeassistant.components.sensor.steam_online
|
|
|
|
steamodd==4.21
|
|
|
|
|
2018-10-08 20:15:38 +00:00
|
|
|
# homeassistant.components.sensor.thermoworks_smoke
|
|
|
|
stringcase==1.2.0
|
|
|
|
|
2018-08-20 15:42:53 +00:00
|
|
|
# homeassistant.components.ecovacs
|
2018-09-23 07:43:01 +00:00
|
|
|
sucks==0.9.3
|
2018-08-20 15:42:53 +00:00
|
|
|
|
2018-07-03 10:43:24 +00:00
|
|
|
# homeassistant.components.camera.onvif
|
|
|
|
suds-passworddigest-homeassistant==0.1.2a0.dev0
|
|
|
|
|
2017-06-16 05:28:17 +00:00
|
|
|
# homeassistant.components.camera.onvif
|
|
|
|
suds-py3==1.3.3.0
|
|
|
|
|
2018-11-11 16:48:44 +00:00
|
|
|
# homeassistant.components.sensor.swiss_hydrological_data
|
|
|
|
swisshydrodata==0.0.3
|
|
|
|
|
2017-11-19 20:35:13 +00:00
|
|
|
# homeassistant.components.tahoma
|
2018-02-26 21:27:20 +00:00
|
|
|
tahoma-api==0.0.13
|
2017-11-19 20:35:13 +00:00
|
|
|
|
2017-08-30 20:21:54 +00:00
|
|
|
# homeassistant.components.sensor.tank_utility
|
|
|
|
tank_utility==1.4.0
|
|
|
|
|
2017-06-04 11:35:19 +00:00
|
|
|
# homeassistant.components.binary_sensor.tapsaff
|
2018-04-28 21:16:34 +00:00
|
|
|
tapsaff==0.2.0
|
2017-06-04 11:35:19 +00:00
|
|
|
|
2017-11-03 19:31:48 +00:00
|
|
|
# homeassistant.components.tellstick
|
2017-12-11 17:32:48 +00:00
|
|
|
tellcore-net==0.4
|
2017-11-03 19:31:48 +00:00
|
|
|
|
2016-03-11 20:54:43 +00:00
|
|
|
# homeassistant.components.tellstick
|
2016-02-01 07:52:42 +00:00
|
|
|
tellcore-py==1.1.2
|
|
|
|
|
|
|
|
# homeassistant.components.tellduslive
|
2017-12-04 16:26:07 +00:00
|
|
|
tellduslive==0.10.4
|
2016-02-01 07:52:42 +00:00
|
|
|
|
2018-10-18 08:39:33 +00:00
|
|
|
# homeassistant.components.media_player.lg_soundbar
|
|
|
|
temescal==0.1
|
|
|
|
|
2016-09-04 16:37:10 +00:00
|
|
|
# homeassistant.components.sensor.temper
|
2017-05-04 05:46:43 +00:00
|
|
|
temperusb==1.5.3
|
2016-09-04 16:37:10 +00:00
|
|
|
|
2017-08-31 04:13:02 +00:00
|
|
|
# homeassistant.components.tesla
|
2018-02-08 07:34:26 +00:00
|
|
|
teslajsonpy==0.0.23
|
2017-08-31 04:13:02 +00:00
|
|
|
|
2018-10-08 20:15:38 +00:00
|
|
|
# homeassistant.components.sensor.thermoworks_smoke
|
2018-10-19 15:48:46 +00:00
|
|
|
thermoworks_smoke==0.1.7
|
2018-10-08 20:15:38 +00:00
|
|
|
|
2016-10-27 06:56:51 +00:00
|
|
|
# homeassistant.components.thingspeak
|
2017-02-13 10:25:28 +00:00
|
|
|
thingspeak==0.4.1
|
2016-10-27 06:56:51 +00:00
|
|
|
|
2017-01-04 21:31:31 +00:00
|
|
|
# homeassistant.components.light.tikteck
|
|
|
|
tikteck==0.4
|
|
|
|
|
2017-09-14 05:27:12 +00:00
|
|
|
# homeassistant.components.calendar.todoist
|
|
|
|
todoist-python==7.0.17
|
|
|
|
|
2017-10-19 15:59:57 +00:00
|
|
|
# homeassistant.components.toon
|
2018-11-04 16:22:03 +00:00
|
|
|
toonlib==1.1.3
|
2017-10-19 15:59:57 +00:00
|
|
|
|
2017-04-04 10:21:53 +00:00
|
|
|
# homeassistant.components.alarm_control_panel.totalconnect
|
2018-11-10 01:04:28 +00:00
|
|
|
total_connect_client==0.22
|
2017-04-04 10:21:53 +00:00
|
|
|
|
2018-11-05 01:09:29 +00:00
|
|
|
# homeassistant.components.tplink_lte
|
|
|
|
tp-connected==0.0.4
|
|
|
|
|
2018-07-17 20:47:32 +00:00
|
|
|
# homeassistant.components.device_tracker.tplink
|
|
|
|
tplink==0.2.1
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.sensor.transmission
|
|
|
|
# homeassistant.components.switch.transmission
|
|
|
|
transmissionrpc==0.11
|
2015-11-18 00:14:29 +00:00
|
|
|
|
2018-07-12 08:19:35 +00:00
|
|
|
# homeassistant.components.tuya
|
2018-08-19 16:55:10 +00:00
|
|
|
tuyapy==0.1.3
|
2018-07-12 08:19:35 +00:00
|
|
|
|
2017-03-03 07:14:51 +00:00
|
|
|
# homeassistant.components.twilio
|
2018-10-18 07:17:55 +00:00
|
|
|
twilio==6.19.1
|
2016-05-14 21:09:28 +00:00
|
|
|
|
2016-03-30 01:44:36 +00:00
|
|
|
# homeassistant.components.sensor.uber
|
2017-09-17 11:40:58 +00:00
|
|
|
uber_rides==0.6.0
|
2016-03-30 01:44:36 +00:00
|
|
|
|
2018-02-28 21:17:12 +00:00
|
|
|
# homeassistant.components.upcloud
|
2018-12-09 17:19:13 +00:00
|
|
|
upcloud-api==0.4.3
|
2018-02-28 21:17:12 +00:00
|
|
|
|
2017-02-12 20:47:12 +00:00
|
|
|
# homeassistant.components.sensor.ups
|
2017-06-17 16:42:12 +00:00
|
|
|
upsmychoice==1.0.6
|
2017-02-12 20:47:12 +00:00
|
|
|
|
2018-04-14 01:54:23 +00:00
|
|
|
# homeassistant.components.sensor.uscis
|
|
|
|
uscisstatus==0.1.1
|
|
|
|
|
2016-02-06 01:24:44 +00:00
|
|
|
# homeassistant.components.camera.uvc
|
2018-12-01 10:58:59 +00:00
|
|
|
uvcclient==0.11.0
|
2016-02-06 01:24:44 +00:00
|
|
|
|
2018-01-25 17:34:53 +00:00
|
|
|
# homeassistant.components.climate.venstar
|
2018-01-29 11:35:13 +00:00
|
|
|
venstarcolortouch==0.6
|
2018-01-25 17:34:53 +00:00
|
|
|
|
2018-08-27 13:05:36 +00:00
|
|
|
# homeassistant.components.sensor.volkszaehler
|
|
|
|
volkszaehler==0.1.2
|
|
|
|
|
2017-02-19 01:09:25 +00:00
|
|
|
# homeassistant.components.volvooncall
|
2018-12-13 11:25:40 +00:00
|
|
|
volvooncall==0.8.2
|
2016-11-02 05:01:00 +00:00
|
|
|
|
2015-11-17 08:18:42 +00:00
|
|
|
# homeassistant.components.verisure
|
2018-11-18 18:41:24 +00:00
|
|
|
vsure==1.5.2
|
2015-11-10 08:40:23 +00:00
|
|
|
|
2016-10-05 05:37:45 +00:00
|
|
|
# homeassistant.components.sensor.vasttrafik
|
2017-02-12 19:57:29 +00:00
|
|
|
vtjp==0.1.14
|
2016-10-05 05:37:45 +00:00
|
|
|
|
2017-11-05 13:10:14 +00:00
|
|
|
# homeassistant.components.vultr
|
|
|
|
vultr==0.1.2
|
|
|
|
|
2017-07-11 01:37:51 +00:00
|
|
|
# homeassistant.components.wake_on_lan
|
2016-12-16 16:16:46 +00:00
|
|
|
# homeassistant.components.media_player.panasonic_viera
|
2017-02-21 15:57:29 +00:00
|
|
|
# homeassistant.components.media_player.samsungtv
|
2016-03-18 14:01:53 +00:00
|
|
|
# homeassistant.components.switch.wake_on_lan
|
2018-09-10 14:07:31 +00:00
|
|
|
wakeonlan==1.1.6
|
2016-03-18 14:01:53 +00:00
|
|
|
|
2017-07-07 14:55:58 +00:00
|
|
|
# homeassistant.components.sensor.waqi
|
|
|
|
waqiasync==1.0.0
|
|
|
|
|
2017-09-12 16:47:04 +00:00
|
|
|
# homeassistant.components.cloud
|
2017-12-13 05:12:41 +00:00
|
|
|
warrant==0.6.1
|
2017-09-12 16:47:04 +00:00
|
|
|
|
2018-03-30 01:10:20 +00:00
|
|
|
# homeassistant.components.folder_watcher
|
|
|
|
watchdog==0.8.3
|
|
|
|
|
2018-01-20 21:51:59 +00:00
|
|
|
# homeassistant.components.waterfurnace
|
2018-12-05 12:03:27 +00:00
|
|
|
waterfurnace==1.0.0
|
2018-01-20 21:51:59 +00:00
|
|
|
|
2016-05-14 20:28:42 +00:00
|
|
|
# homeassistant.components.media_player.gpmdp
|
2018-12-14 12:14:32 +00:00
|
|
|
websocket-client==0.54.0
|
2016-05-14 20:28:42 +00:00
|
|
|
|
2016-12-17 07:24:35 +00:00
|
|
|
# homeassistant.components.media_player.webostv
|
2018-09-12 10:44:14 +00:00
|
|
|
websockets==6.0
|
2016-12-17 07:24:35 +00:00
|
|
|
|
2018-06-07 20:30:20 +00:00
|
|
|
# homeassistant.components.wirelesstag
|
2018-09-13 07:48:17 +00:00
|
|
|
wirelesstagpy==0.4.0
|
2018-06-07 20:30:20 +00:00
|
|
|
|
2018-11-27 14:44:09 +00:00
|
|
|
# homeassistant.components.wunderlist
|
|
|
|
wunderpy2==0.1.6
|
|
|
|
|
2016-01-24 08:02:14 +00:00
|
|
|
# homeassistant.components.zigbee
|
2016-05-07 01:09:18 +00:00
|
|
|
xbee-helper==0.0.7
|
2016-01-24 08:02:14 +00:00
|
|
|
|
2016-09-03 23:43:33 +00:00
|
|
|
# homeassistant.components.sensor.xbox_live
|
|
|
|
xboxapi==0.1.1
|
|
|
|
|
2017-09-07 07:11:55 +00:00
|
|
|
# homeassistant.components.knx
|
2018-10-28 22:03:27 +00:00
|
|
|
xknx==0.9.1
|
2017-09-07 07:11:55 +00:00
|
|
|
|
2017-08-02 05:41:51 +00:00
|
|
|
# homeassistant.components.media_player.bluesound
|
2018-02-13 03:43:56 +00:00
|
|
|
# homeassistant.components.sensor.startca
|
2016-10-05 04:57:40 +00:00
|
|
|
# homeassistant.components.sensor.ted5000
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.sensor.yr
|
2018-03-03 16:41:33 +00:00
|
|
|
# homeassistant.components.sensor.zestimate
|
2017-04-29 21:59:38 +00:00
|
|
|
xmltodict==0.11.0
|
2016-04-06 20:51:26 +00:00
|
|
|
|
2016-07-08 15:48:38 +00:00
|
|
|
# homeassistant.components.sensor.yweather
|
2017-06-07 08:49:54 +00:00
|
|
|
# homeassistant.components.weather.yweather
|
2017-12-27 08:19:46 +00:00
|
|
|
yahooweather==0.10
|
2016-07-08 15:48:38 +00:00
|
|
|
|
2018-09-07 10:22:10 +00:00
|
|
|
# homeassistant.components.alarm_control_panel.yale_smart_alarm
|
2018-12-04 08:56:14 +00:00
|
|
|
yalesmartalarmclient==0.1.5
|
2018-09-07 10:22:10 +00:00
|
|
|
|
new yeelight backend lib, new features (#5296)
* initial yeelight based on python-yeelight
* adapt yeelight's discovery code & suppress exceptions on set_default
* Support flash & code cleanups
Adds simple pulse for flashing, needs to be refined.
This commit also includes changing transition from seconds to milliseconds,
and cleans up the code quite a bit.
* cleanup code, adjust default transition to 350
* bump required version to 0.0.13
* Cleaning up and marking todos, ready to be reviewed
* Renamed back to yeelight.
* Removed effect support for now until we have some sane effects available.
* Add "breath" notification for flash, currently hidden behind a False check due to unknown issue not accepting it.
* TODO/open points are marked as such.
* Fix a typo in rgb calculation
* yeelight_<bulbtype>_<mac> for autodetected bulbs
hostname from mdns seems to vary
* Lint fixes, add music mode, fix flash
* Flash transforms now to red and back
* Fix lint warnings
* Add initial music mode.
* remove unused mode logging, move set_mode to turn_on
* Add save_on_change configuration variable
* yeelight: check if music mode is on before enabling it.
* Fix linting, bump required python-yeelight version
* More linting fixes, use import when needed instead of saving the module handle
* Use OR instead of + for features assignment
* Fix color temperature support, convert non-rgb values to rgb values in rgb()
* Fix typo on duration, thanks @qzapwy for noticing
* yeelight: fix issues from review, behave when not available
* Implement available()
* Fix transition to take seconds instead of milliseconds
* Fix default configuration for detected bulbs
* Cache values fetched in update()
* Add return values for methods
* yeelight: kwarg-given transition overrides config, slight cleanups
* change settings back to optional, request update when calling add_devices
* As future version of python-yeelight will wrap exceptions, we can handle broken connections more nicely.
* bump yeelight library version
* Remove unused import
* set the default only when settings are changed and not, e.g., when turned on by automation
* update comment & fix linting
2017-01-31 09:01:11 +00:00
|
|
|
# homeassistant.components.light.yeelight
|
2018-10-12 09:35:33 +00:00
|
|
|
yeelight==0.4.3
|
new yeelight backend lib, new features (#5296)
* initial yeelight based on python-yeelight
* adapt yeelight's discovery code & suppress exceptions on set_default
* Support flash & code cleanups
Adds simple pulse for flashing, needs to be refined.
This commit also includes changing transition from seconds to milliseconds,
and cleans up the code quite a bit.
* cleanup code, adjust default transition to 350
* bump required version to 0.0.13
* Cleaning up and marking todos, ready to be reviewed
* Renamed back to yeelight.
* Removed effect support for now until we have some sane effects available.
* Add "breath" notification for flash, currently hidden behind a False check due to unknown issue not accepting it.
* TODO/open points are marked as such.
* Fix a typo in rgb calculation
* yeelight_<bulbtype>_<mac> for autodetected bulbs
hostname from mdns seems to vary
* Lint fixes, add music mode, fix flash
* Flash transforms now to red and back
* Fix lint warnings
* Add initial music mode.
* remove unused mode logging, move set_mode to turn_on
* Add save_on_change configuration variable
* yeelight: check if music mode is on before enabling it.
* Fix linting, bump required python-yeelight version
* More linting fixes, use import when needed instead of saving the module handle
* Use OR instead of + for features assignment
* Fix color temperature support, convert non-rgb values to rgb values in rgb()
* Fix typo on duration, thanks @qzapwy for noticing
* yeelight: fix issues from review, behave when not available
* Implement available()
* Fix transition to take seconds instead of milliseconds
* Fix default configuration for detected bulbs
* Cache values fetched in update()
* Add return values for methods
* yeelight: kwarg-given transition overrides config, slight cleanups
* change settings back to optional, request update when calling add_devices
* As future version of python-yeelight will wrap exceptions, we can handle broken connections more nicely.
* bump yeelight library version
* Remove unused import
* set the default only when settings are changed and not, e.g., when turned on by automation
* update comment & fix linting
2017-01-31 09:01:11 +00:00
|
|
|
|
2017-02-18 22:05:55 +00:00
|
|
|
# homeassistant.components.light.yeelightsunflower
|
2018-03-26 16:27:53 +00:00
|
|
|
yeelightsunflower==0.0.10
|
2017-02-18 22:05:55 +00:00
|
|
|
|
2017-07-11 08:16:34 +00:00
|
|
|
# homeassistant.components.media_extractor
|
2018-12-09 11:38:42 +00:00
|
|
|
youtube_dl==2018.12.03
|
2017-07-11 08:16:34 +00:00
|
|
|
|
2017-01-14 06:15:43 +00:00
|
|
|
# homeassistant.components.light.zengge
|
|
|
|
zengge==0.2
|
|
|
|
|
2016-04-10 22:34:04 +00:00
|
|
|
# homeassistant.components.zeroconf
|
2018-09-23 07:50:59 +00:00
|
|
|
zeroconf==0.21.3
|
2017-12-05 13:22:27 +00:00
|
|
|
|
2018-12-12 16:06:22 +00:00
|
|
|
# homeassistant.components.zha
|
|
|
|
zha-quirks==0.0.5
|
|
|
|
|
2018-06-14 13:47:17 +00:00
|
|
|
# homeassistant.components.climate.zhong_hong
|
|
|
|
zhong_hong_hvac==1.0.9
|
|
|
|
|
2017-12-05 13:22:27 +00:00
|
|
|
# homeassistant.components.media_player.ziggo_mediabox_xl
|
2018-11-06 12:14:52 +00:00
|
|
|
ziggo-mediabox-xl==1.1.0
|
2018-02-06 00:05:19 +00:00
|
|
|
|
2018-02-06 18:46:28 +00:00
|
|
|
# homeassistant.components.zha
|
2018-05-21 04:57:09 +00:00
|
|
|
zigpy-xbee==0.1.1
|
2018-02-06 18:46:28 +00:00
|
|
|
|
2018-02-06 00:05:19 +00:00
|
|
|
# homeassistant.components.zha
|
2018-09-04 05:46:27 +00:00
|
|
|
zigpy==0.2.0
|
2018-09-15 06:44:48 +00:00
|
|
|
|
|
|
|
# homeassistant.components.zoneminder
|
2018-12-14 07:10:54 +00:00
|
|
|
zm-py==0.2.0
|