2015-11-17 00:18:42 -08:00
|
|
|
# Home Assistant core
|
2018-06-18 02:24:11 +02:00
|
|
|
aiohttp==3.3.2
|
2018-05-05 10:45:09 +02:00
|
|
|
astral==1.6.1
|
2018-05-19 10:04:00 +02:00
|
|
|
async_timeout==3.0.0
|
2018-05-04 14:58:34 +02:00
|
|
|
attrs==18.1.0
|
2018-05-19 10:04:00 +02:00
|
|
|
certifi>=2018.04.16
|
|
|
|
jinja2>=2.10
|
|
|
|
pip>=8.0.3
|
|
|
|
pytz>=2018.04
|
2018-07-07 17:48:02 +03:00
|
|
|
pyyaml>=3.13,<4
|
2018-06-18 18:13:21 +02:00
|
|
|
requests==2.19.1
|
2018-07-29 23:36:28 +02:00
|
|
|
voluptuous==0.11.3
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2016-09-15 03:20:49 +02:00
|
|
|
# homeassistant.components.nuimo_controller
|
2018-06-17 16:41:49 +03:00
|
|
|
--only-binary=all nuimo==0.1.0
|
2016-09-15 03:20:49 +02:00
|
|
|
|
2018-07-30 16:15:13 +02:00
|
|
|
# homeassistant.components.sensor.dht
|
|
|
|
# Adafruit-DHT==1.3.3
|
|
|
|
|
2018-04-19 12:37:30 +03:00
|
|
|
# homeassistant.components.sensor.sht31
|
|
|
|
Adafruit-GPIO==1.0.3
|
|
|
|
|
|
|
|
# homeassistant.components.sensor.sht31
|
|
|
|
Adafruit-SHT31==1.0.2
|
|
|
|
|
2017-01-05 20:53:48 +01:00
|
|
|
# homeassistant.components.bbb_gpio
|
2017-01-12 16:31:30 +00:00
|
|
|
# Adafruit_BBIO==1.0.0
|
2017-01-05 20:53:48 +01:00
|
|
|
|
2017-09-17 13:47:30 -05:00
|
|
|
# homeassistant.components.doorbird
|
2018-03-20 08:43:31 +01:00
|
|
|
DoorBirdPy==0.1.3
|
2017-09-17 13:47:30 -05:00
|
|
|
|
2018-02-19 23:46:22 +01:00
|
|
|
# homeassistant.components.homekit
|
2018-05-29 22:43:26 +02:00
|
|
|
HAP-python==2.2.2
|
2018-02-19 23:46:22 +01:00
|
|
|
|
2018-03-31 23:20:58 +02:00
|
|
|
# homeassistant.components.notify.mastodon
|
2018-06-07 16:04:58 +02:00
|
|
|
Mastodon.py==1.3.0
|
2018-03-31 23:20:58 +02:00
|
|
|
|
2016-01-31 23:52:42 -08: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-13 20:14:56 -08:00
|
|
|
PyISY==1.1.0
|
2016-01-13 23:22:42 -07:00
|
|
|
|
2016-08-17 22:34:12 -07:00
|
|
|
# homeassistant.components.notify.html5
|
2018-03-05 03:46:09 +01:00
|
|
|
PyJWT==1.6.0
|
2016-08-17 22:34:12 -07:00
|
|
|
|
2017-03-26 19:06:40 +02:00
|
|
|
# homeassistant.components.sensor.mvglive
|
2017-05-30 18:26:26 +02:00
|
|
|
PyMVGLive==1.1.4
|
2017-03-26 19:06:40 +02:00
|
|
|
|
2015-11-17 00:18:42 -08:00
|
|
|
# homeassistant.components.arduino
|
2017-04-19 12:48:15 +02:00
|
|
|
PyMata==2.14
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2017-09-19 05:36:59 -04:00
|
|
|
# homeassistant.components.xiaomi_aqara
|
2018-06-04 07:39:50 +02:00
|
|
|
PyXiaomiGateway==0.9.5
|
2017-09-19 05:36:59 -04:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.rpi_gpio
|
|
|
|
# RPi.GPIO==0.6.1
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2017-11-01 04:33:47 +01:00
|
|
|
# homeassistant.components.remember_the_milk
|
|
|
|
RtmAPI==0.7.0
|
|
|
|
|
2018-06-14 15:17:54 -04:00
|
|
|
# homeassistant.components.sonos
|
2018-02-18 20:05:20 +01:00
|
|
|
SoCo==0.14
|
2016-11-11 06:01:42 +01:00
|
|
|
|
2017-10-07 05:02:40 -04:00
|
|
|
# homeassistant.components.sensor.travisci
|
|
|
|
TravisPy==0.3.5
|
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.notify.twitter
|
2018-05-27 15:46:58 +02:00
|
|
|
TwitterAPI==2.5.4
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2018-03-31 17:01:07 -04:00
|
|
|
# homeassistant.components.sensor.waze_travel_time
|
2018-07-01 19:02:02 +02:00
|
|
|
WazeRouteCalculator==0.6
|
2018-03-31 17:01:07 -04:00
|
|
|
|
2017-10-29 01:05:56 +02:00
|
|
|
# homeassistant.components.notify.yessssms
|
|
|
|
YesssSMS==0.1.1b3
|
|
|
|
|
2017-08-20 10:55:48 -04:00
|
|
|
# homeassistant.components.abode
|
2018-04-12 13:27:23 -07:00
|
|
|
abodepy==0.13.1
|
2017-08-20 10:55:48 -04:00
|
|
|
|
2018-02-20 17:14:34 +01:00
|
|
|
# homeassistant.components.media_player.frontier_silicon
|
|
|
|
afsapi==0.0.3
|
|
|
|
|
2017-04-15 21:11:36 -04:00
|
|
|
# homeassistant.components.device_tracker.automatic
|
2018-02-17 14:13:27 -05:00
|
|
|
aioautomatic==0.6.5
|
2017-04-15 21:11:36 -04:00
|
|
|
|
2017-02-27 11:45:32 +01:00
|
|
|
# homeassistant.components.sensor.dnsip
|
|
|
|
aiodns==1.1.1
|
|
|
|
|
2018-06-05 20:38:50 +02:00
|
|
|
# homeassistant.components.device_tracker.freebox
|
2018-06-25 19:05:33 +02:00
|
|
|
aiofreepybox==0.0.4
|
2018-06-05 20:38:50 +02:00
|
|
|
|
2018-06-13 09:00:33 -06:00
|
|
|
# homeassistant.components.camera.yi
|
|
|
|
aioftp==0.10.1
|
|
|
|
|
2017-01-25 00:29:34 -05:00
|
|
|
# homeassistant.components.emulated_hue
|
2016-05-14 00:58:36 -07:00
|
|
|
# homeassistant.components.http
|
2018-03-17 17:37:53 +01:00
|
|
|
aiohttp_cors==0.7.0
|
2016-05-09 21:09:38 -04:00
|
|
|
|
2018-03-03 21:28:04 -08:00
|
|
|
# homeassistant.components.hue
|
2018-05-28 10:21:00 -04:00
|
|
|
aiohue==1.5.0
|
2018-03-03 21:28:04 -08:00
|
|
|
|
2017-09-26 09:26:26 +02:00
|
|
|
# homeassistant.components.sensor.imap
|
2017-10-18 10:00:00 +02:00
|
|
|
aioimaplib==0.7.13
|
2017-09-26 09:26:26 +02:00
|
|
|
|
2017-03-16 06:50:33 +01:00
|
|
|
# homeassistant.components.light.lifx
|
2018-06-07 16:06:29 +02:00
|
|
|
aiolifx==0.6.3
|
2017-06-27 07:05:32 +02:00
|
|
|
|
|
|
|
# homeassistant.components.light.lifx
|
2017-09-19 22:27:00 +02:00
|
|
|
aiolifx_effects==0.1.2
|
2017-03-16 06:50:33 +01:00
|
|
|
|
2017-05-26 22:19:19 +02:00
|
|
|
# homeassistant.components.scene.hunterdouglas_powerview
|
2017-10-23 08:34:50 +02:00
|
|
|
aiopvapi==1.5.4
|
2017-05-26 22:19:19 +02:00
|
|
|
|
2018-07-30 01:19:34 -04:00
|
|
|
# homeassistant.components.cover.aladdin_connect
|
|
|
|
aladdin_connect==0.1
|
|
|
|
|
2017-04-12 05:35:35 -04:00
|
|
|
# homeassistant.components.alarmdecoder
|
2018-01-04 11:10:56 -08:00
|
|
|
alarmdecoder==1.13.2
|
2017-04-12 05:35:35 -04:00
|
|
|
|
2017-12-03 21:34:59 +01:00
|
|
|
# homeassistant.components.sensor.alpha_vantage
|
2018-04-17 04:16:12 +02:00
|
|
|
alpha_vantage==2.0.0
|
2017-12-03 21:34:59 +01:00
|
|
|
|
2017-07-11 04:10:10 -04:00
|
|
|
# homeassistant.components.amcrest
|
2018-06-16 06:57:58 -04:00
|
|
|
amcrest==1.2.3
|
2016-11-30 16:07:17 -05:00
|
|
|
|
2018-06-17 14:05:25 +03:00
|
|
|
# homeassistant.components.switch.anel_pwrctrl
|
|
|
|
anel_pwrctrl-homeassistant==0.0.1.dev2
|
|
|
|
|
2017-01-19 13:07:01 -06:00
|
|
|
# homeassistant.components.media_player.anthemav
|
2017-01-24 17:20:59 -06:00
|
|
|
anthemav==1.1.8
|
2017-01-19 13:07:01 -06:00
|
|
|
|
2016-02-10 16:32:18 +00:00
|
|
|
# homeassistant.components.apcupsd
|
2017-07-02 11:24:07 +02:00
|
|
|
apcaccess==0.0.13
|
2016-02-10 16:32:18 +00:00
|
|
|
|
2016-10-18 03:41:49 +01:00
|
|
|
# homeassistant.components.notify.apns
|
2017-11-09 06:09:19 +01:00
|
|
|
apns2==0.3.0
|
2016-10-18 03:41:49 +01:00
|
|
|
|
2017-08-06 11:19:47 -07:00
|
|
|
# homeassistant.components.asterisk_mbox
|
|
|
|
asterisk_mbox==0.4.0
|
|
|
|
|
2017-01-19 12:07:37 -08:00
|
|
|
# homeassistant.components.light.avion
|
2017-07-04 15:39:51 -07:00
|
|
|
# avion==0.7
|
2017-01-19 12:07:37 -08:00
|
|
|
|
2017-05-12 17:51:54 +02:00
|
|
|
# homeassistant.components.axis
|
2017-10-25 09:04:30 +02:00
|
|
|
axis==14
|
2017-05-12 17:51:54 +02:00
|
|
|
|
2017-11-27 17:13:25 +08:00
|
|
|
# homeassistant.components.tts.baidu
|
|
|
|
baidu-aip==1.6.6
|
|
|
|
|
2017-05-10 06:23:19 +03:00
|
|
|
# homeassistant.components.sensor.modem_callerid
|
|
|
|
basicmodem==0.7
|
|
|
|
|
2016-09-07 16:32:35 +02:00
|
|
|
# homeassistant.components.sensor.linux_battery
|
2016-11-19 07:04:15 +01:00
|
|
|
batinfo==0.4.2
|
2016-09-07 16:32:35 +02:00
|
|
|
|
2017-04-04 23:57:19 +02:00
|
|
|
# homeassistant.components.sensor.eddystone_temperature
|
2018-04-10 03:24:18 +02:00
|
|
|
# beacontools[scan]==1.2.3
|
2017-04-04 23:57:19 +02:00
|
|
|
|
2017-01-27 08:27:29 +01:00
|
|
|
# homeassistant.components.device_tracker.linksys_ap
|
2017-08-04 12:11:33 +02:00
|
|
|
# homeassistant.components.sensor.geizhals
|
2016-10-17 01:06:07 +02:00
|
|
|
# homeassistant.components.sensor.scrape
|
2017-10-29 01:34:55 +02:00
|
|
|
# homeassistant.components.sensor.sytadin
|
2018-07-29 19:55:49 +02:00
|
|
|
beautifulsoup4==4.6.1
|
2016-10-17 01:06:07 +02:00
|
|
|
|
2017-04-24 22:24:57 -07:00
|
|
|
# homeassistant.components.zha
|
2018-05-06 02:17:05 -07:00
|
|
|
bellows==0.6.0
|
2017-04-24 22:24:57 -07:00
|
|
|
|
2018-02-20 23:02:08 +01:00
|
|
|
# homeassistant.components.bmw_connected_drive
|
2018-05-08 09:52:21 +02:00
|
|
|
bimmer_connected==0.5.1
|
2018-02-20 23:02:08 +01:00
|
|
|
|
2017-03-07 17:26:53 -05:00
|
|
|
# homeassistant.components.blink
|
2017-05-12 23:30:07 -04:00
|
|
|
blinkpy==0.6.0
|
2017-03-07 17:26:53 -05:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.light.blinksticklight
|
2016-08-21 00:41:14 +02:00
|
|
|
blinkstick==1.1.8
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2017-04-30 19:48:54 +01:00
|
|
|
# homeassistant.components.light.blinkt
|
2017-05-11 19:20:23 -07:00
|
|
|
# blinkt==0.1.0
|
2017-04-30 19:48:54 +01:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.sensor.bitcoin
|
2018-06-01 19:41:35 +02:00
|
|
|
blockchain==1.4.4
|
2015-11-26 23:57:34 +01:00
|
|
|
|
2017-07-18 18:02:42 -04:00
|
|
|
# homeassistant.components.light.decora
|
2018-01-20 08:50:25 +01:00
|
|
|
# bluepy==1.1.4
|
2017-07-18 18:02:42 -04:00
|
|
|
|
2018-01-23 15:51:52 +08:00
|
|
|
# homeassistant.components.sensor.bme680
|
|
|
|
# bme680==1.0.4
|
|
|
|
|
2016-05-15 13:17:35 -07:00
|
|
|
# homeassistant.components.notify.aws_lambda
|
|
|
|
# homeassistant.components.notify.aws_sns
|
|
|
|
# homeassistant.components.notify.aws_sqs
|
2017-01-26 14:22:47 -08:00
|
|
|
# homeassistant.components.tts.amazon_polly
|
2017-10-29 10:24:56 +01:00
|
|
|
boto3==1.4.7
|
2016-05-15 13:17:35 -07:00
|
|
|
|
2017-07-25 01:59:10 +10:00
|
|
|
# homeassistant.scripts.credstash
|
2017-10-29 10:24:56 +01:00
|
|
|
botocore==1.7.34
|
2017-07-25 01:59:10 +10:00
|
|
|
|
2018-06-17 14:07:10 +03:00
|
|
|
# homeassistant.components.media_player.braviatv
|
|
|
|
braviarc-homeassistant==0.3.7.dev0
|
|
|
|
|
2018-04-01 10:09:16 +02:00
|
|
|
# homeassistant.components.sensor.broadlink
|
|
|
|
# homeassistant.components.switch.broadlink
|
2018-04-25 04:45:16 +02:00
|
|
|
broadlink==0.9.0
|
2018-04-01 10:09:16 +02:00
|
|
|
|
2018-07-25 12:17:12 +02:00
|
|
|
# homeassistant.components.cover.brunt
|
|
|
|
brunt==0.1.2
|
|
|
|
|
2018-03-31 23:22:54 +02:00
|
|
|
# homeassistant.components.device_tracker.bluetooth_tracker
|
|
|
|
bt_proximity==0.1.2
|
|
|
|
|
2017-06-05 08:48:11 +02:00
|
|
|
# homeassistant.components.sensor.buienradar
|
2017-07-07 06:39:28 +02:00
|
|
|
# homeassistant.components.weather.buienradar
|
2018-02-18 01:19:27 +01:00
|
|
|
buienradar==0.91
|
2017-06-05 08:48:11 +02:00
|
|
|
|
2017-12-10 17:44:28 +01:00
|
|
|
# homeassistant.components.calendar.caldav
|
|
|
|
caldav==0.5.0
|
|
|
|
|
2017-02-26 17:04:30 -06:00
|
|
|
# homeassistant.components.notify.ciscospark
|
|
|
|
ciscosparkapi==0.4.2
|
|
|
|
|
2018-03-05 13:26:37 -08:00
|
|
|
# homeassistant.components.coinbase
|
|
|
|
coinbase==2.1.0
|
|
|
|
|
2016-09-02 16:59:05 +02:00
|
|
|
# homeassistant.components.sensor.coinmarketcap
|
2018-05-25 15:39:04 +02:00
|
|
|
coinmarketcap==5.0.3
|
2016-09-02 16:59:05 +02:00
|
|
|
|
2016-08-23 06:42:05 +02:00
|
|
|
# homeassistant.scripts.check_config
|
2018-04-28 14:03:09 +02:00
|
|
|
colorlog==3.1.4
|
2016-08-23 06:42:05 +02:00
|
|
|
|
2016-10-17 22:59:41 -04:00
|
|
|
# homeassistant.components.alarm_control_panel.concord232
|
|
|
|
# homeassistant.components.binary_sensor.concord232
|
2018-01-11 23:45:01 -08:00
|
|
|
concord232==0.15
|
2016-10-17 22:59:41 -04:00
|
|
|
|
2018-03-30 02:12:11 +02:00
|
|
|
# homeassistant.components.climate.eq3btsmart
|
2018-04-17 11:45:19 +02:00
|
|
|
# homeassistant.components.device_tracker.xiaomi_miio
|
2018-03-30 02:12:11 +02: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
|
|
|
|
construct==2.9.41
|
|
|
|
|
2017-07-25 01:59:10 +10:00
|
|
|
# homeassistant.scripts.credstash
|
2017-11-03 13:51:17 +01:00
|
|
|
# credstash==1.14.0
|
2017-07-25 01:59:10 +10:00
|
|
|
|
2017-04-07 01:47:03 -04:00
|
|
|
# homeassistant.components.sensor.crimereports
|
|
|
|
crimereports==1.0.0
|
|
|
|
|
2017-05-05 23:34:40 +01:00
|
|
|
# homeassistant.components.datadog
|
|
|
|
datadog==0.15.0
|
|
|
|
|
2017-03-31 21:03:27 +01:00
|
|
|
# homeassistant.components.sensor.metoffice
|
|
|
|
# homeassistant.components.weather.metoffice
|
|
|
|
datapoint==0.4.3
|
|
|
|
|
2017-01-21 14:14:08 -08:00
|
|
|
# homeassistant.components.light.decora
|
2017-06-21 10:37:27 -04:00
|
|
|
# decora==0.6
|
2017-01-21 14:14:08 -08:00
|
|
|
|
2017-08-06 11:30:28 -07:00
|
|
|
# homeassistant.components.light.decora_wifi
|
|
|
|
# decora_wifi==1.3
|
|
|
|
|
2017-10-18 10:21:46 -04:00
|
|
|
# homeassistant.components.device_tracker.upc_connect
|
|
|
|
defusedxml==0.5.0
|
|
|
|
|
2017-10-25 15:13:11 +02:00
|
|
|
# homeassistant.components.sensor.deluge
|
2017-10-24 16:44:12 +02:00
|
|
|
# homeassistant.components.switch.deluge
|
2018-04-29 02:16:22 +04:00
|
|
|
deluge-client==1.4.0
|
2017-10-24 16:44:12 +02:00
|
|
|
|
2016-11-28 07:13:22 +01:00
|
|
|
# homeassistant.components.media_player.denonavr
|
2018-07-30 00:42:23 +02:00
|
|
|
denonavr==0.7.5
|
2016-11-28 07:13:22 +01:00
|
|
|
|
2016-07-26 02:20:56 -04:00
|
|
|
# homeassistant.components.media_player.directv
|
2018-06-02 02:30:15 -05:00
|
|
|
directpy==0.5
|
2016-07-26 02:20:56 -04:00
|
|
|
|
2017-12-18 19:10:54 +01:00
|
|
|
# homeassistant.components.sensor.discogs
|
|
|
|
discogs_client==2.2.1
|
|
|
|
|
2017-01-17 07:58:38 +01:00
|
|
|
# homeassistant.components.notify.discord
|
2017-10-02 17:16:37 +02:00
|
|
|
discord.py==0.16.12
|
2017-01-17 07:58:38 +01:00
|
|
|
|
2016-10-20 21:30:44 +02:00
|
|
|
# homeassistant.components.updater
|
2018-05-13 18:01:10 +02:00
|
|
|
distro==1.3.0
|
2016-10-20 21:30:44 +02:00
|
|
|
|
2016-12-03 23:40:22 -08:00
|
|
|
# homeassistant.components.switch.digitalloggers
|
|
|
|
dlipower==0.7.165
|
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.notify.xmpp
|
2016-10-11 08:24:10 +02:00
|
|
|
dnspython3==1.15.0
|
2016-01-19 08:10:17 -05:00
|
|
|
|
2016-11-03 05:20:21 +01:00
|
|
|
# homeassistant.components.sensor.dovado
|
2017-02-25 12:50:10 +01:00
|
|
|
dovado==0.4.1
|
2016-11-03 05:20:21 +01:00
|
|
|
|
2016-11-23 11:44:37 +01:00
|
|
|
# homeassistant.components.sensor.dsmr
|
2017-09-25 22:19:44 +02:00
|
|
|
dsmr_parser==0.11
|
2016-11-23 11:44:37 +01:00
|
|
|
|
2016-05-07 02:55:26 +02:00
|
|
|
# homeassistant.components.dweet
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.sensor.dweet
|
2017-05-11 22:48:03 +02:00
|
|
|
dweepy==0.3.0
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2018-06-10 15:38:55 +02:00
|
|
|
# homeassistant.components.media_player.horizon
|
|
|
|
einder==0.3.1
|
|
|
|
|
2018-05-03 19:54:37 +02:00
|
|
|
# homeassistant.components.sensor.eliqonline
|
|
|
|
eliqonline==1.0.14
|
|
|
|
|
2016-05-29 23:28:03 +02:00
|
|
|
# homeassistant.components.enocean
|
2017-10-18 13:04:44 -04:00
|
|
|
enocean==0.40
|
2016-05-29 23:28:03 +02:00
|
|
|
|
2017-05-04 06:59:50 +01:00
|
|
|
# homeassistant.components.sensor.envirophat
|
2017-05-13 05:06:28 +02:00
|
|
|
# envirophat==0.0.6
|
2017-05-04 06:59:50 +01:00
|
|
|
|
2017-08-29 10:18:37 -04:00
|
|
|
# homeassistant.components.sensor.season
|
|
|
|
ephem==3.7.6.0
|
|
|
|
|
2018-06-13 07:28:59 +02:00
|
|
|
# homeassistant.components.media_player.epson
|
|
|
|
epson-projector==0.1.3
|
|
|
|
|
2018-06-08 07:46:34 +02:00
|
|
|
# homeassistant.components.netgear_lte
|
2018-07-21 10:14:56 +02:00
|
|
|
eternalegypt==0.0.3
|
2018-06-08 07:46:34 +02:00
|
|
|
|
2016-09-18 08:31:27 +02:00
|
|
|
# homeassistant.components.keyboard_remote
|
2016-09-28 00:05:38 -07:00
|
|
|
# evdev==0.6.1
|
2016-09-18 08:31:27 +02:00
|
|
|
|
2016-08-19 09:17:28 +02:00
|
|
|
# homeassistant.components.climate.honeywell
|
2016-04-23 18:03:43 +02:00
|
|
|
evohomeclient==0.2.5
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2017-05-04 16:03:50 +02:00
|
|
|
# homeassistant.components.image_processing.dlib_face_detect
|
|
|
|
# homeassistant.components.image_processing.dlib_face_identify
|
2017-09-06 20:05:34 +05:30
|
|
|
# face_recognition==1.0.0
|
2017-05-04 16:03:50 +02:00
|
|
|
|
2016-09-08 20:26:50 -04:00
|
|
|
# homeassistant.components.sensor.fastdotcom
|
2017-12-01 12:25:54 +01:00
|
|
|
fastdotcom==0.0.3
|
2016-09-08 20:26:50 -04:00
|
|
|
|
2017-02-12 15:47:27 -05:00
|
|
|
# homeassistant.components.sensor.fedex
|
2018-02-27 21:04:30 -05:00
|
|
|
fedexdeliverymanager==1.0.6
|
2017-02-12 15:47:27 -05:00
|
|
|
|
2016-04-19 17:14:36 +02:00
|
|
|
# homeassistant.components.feedreader
|
2017-09-24 16:12:38 +10:00
|
|
|
# homeassistant.components.sensor.geo_rss_events
|
2016-04-19 17:14:36 +02:00
|
|
|
feedparser==5.2.1
|
|
|
|
|
2018-05-17 02:45:47 +02:00
|
|
|
# homeassistant.components.sensor.fints
|
|
|
|
fints==0.2.1
|
|
|
|
|
2016-05-07 12:46:45 -07:00
|
|
|
# homeassistant.components.sensor.fitbit
|
2017-08-19 16:47:32 -04:00
|
|
|
fitbit==0.3.0
|
2016-05-07 12:46:45 -07:00
|
|
|
|
2016-06-21 16:43:02 +02:00
|
|
|
# homeassistant.components.sensor.fixer
|
2018-07-03 12:30:56 +02:00
|
|
|
fixerio==1.0.0a0
|
2016-06-21 16:43:02 +02:00
|
|
|
|
2017-01-11 00:45:46 -05:00
|
|
|
# homeassistant.components.light.flux_led
|
2018-01-19 09:44:40 +01:00
|
|
|
flux_led==0.21
|
2017-01-11 00:45:46 -05:00
|
|
|
|
2018-03-16 03:50:58 +01:00
|
|
|
# homeassistant.components.sensor.foobot
|
2018-04-16 21:35:24 +02:00
|
|
|
foobot_async==0.3.1
|
2018-03-16 03:50:58 +01:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.notify.free_mobile
|
2017-11-08 16:11:12 +01:00
|
|
|
freesms==0.1.2
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2017-01-18 11:01:31 +01:00
|
|
|
# homeassistant.components.device_tracker.fritz
|
2017-03-17 14:40:12 +01:00
|
|
|
# homeassistant.components.sensor.fritzbox_callmonitor
|
2017-02-14 08:58:23 +01:00
|
|
|
# homeassistant.components.sensor.fritzbox_netmonitor
|
2017-10-18 14:58:26 -04:00
|
|
|
# fritzconnection==0.6.5
|
2017-01-18 11:01:31 +01:00
|
|
|
|
2017-02-03 08:29:18 +01:00
|
|
|
# homeassistant.components.switch.fritzdect
|
2018-01-16 15:55:22 +01:00
|
|
|
fritzhome==1.0.4
|
2017-02-03 08:29:18 +01:00
|
|
|
|
2016-12-13 08:23:08 +01:00
|
|
|
# homeassistant.components.tts.google
|
|
|
|
gTTS-token==1.1.1
|
|
|
|
|
2016-08-18 08:41:05 +02:00
|
|
|
# homeassistant.components.device_tracker.bluetooth_le_tracker
|
|
|
|
# gattlib==0.20150805
|
|
|
|
|
2017-12-05 12:32:43 +01:00
|
|
|
# homeassistant.components.sensor.gearbest
|
2018-06-06 11:38:50 +02:00
|
|
|
gearbest_parser==1.0.7
|
2017-12-05 12:32:43 +01:00
|
|
|
|
2017-06-12 06:40:06 +02:00
|
|
|
# homeassistant.components.sensor.gitter
|
2018-05-27 15:45:43 +02:00
|
|
|
gitterpy==0.1.7
|
2017-06-12 06:40:06 +02:00
|
|
|
|
2016-03-25 18:39:08 -07:00
|
|
|
# homeassistant.components.notify.gntp
|
|
|
|
gntp==1.0.3
|
|
|
|
|
2016-11-19 01:29:20 -05:00
|
|
|
# homeassistant.components.google
|
2017-10-02 16:42:23 -04:00
|
|
|
google-api-python-client==1.6.4
|
2016-11-19 01:29:20 -05:00
|
|
|
|
2016-05-07 19:17:28 +02:00
|
|
|
# homeassistant.components.sensor.google_travel_time
|
2017-10-02 17:17:22 +02:00
|
|
|
googlemaps==2.5.1
|
2016-05-07 19:17:28 +02:00
|
|
|
|
2016-08-13 19:37:12 +02:00
|
|
|
# homeassistant.components.sensor.gpsd
|
2016-09-06 16:53:21 +02:00
|
|
|
gps3==0.33.3
|
2016-08-13 19:37:12 +02:00
|
|
|
|
2017-12-23 19:11:45 -05:00
|
|
|
# homeassistant.components.light.greenwave
|
2018-01-25 18:00:32 -05:00
|
|
|
greenwavereality==0.5.1
|
2017-12-23 19:11:45 -05:00
|
|
|
|
2017-02-12 16:00:27 -05:00
|
|
|
# homeassistant.components.media_player.gstreamer
|
2017-04-08 17:53:16 -04:00
|
|
|
gstreamer-player==1.1.0
|
2017-02-12 16:00:27 -05:00
|
|
|
|
2016-09-15 14:35:40 +02:00
|
|
|
# homeassistant.components.ffmpeg
|
2017-10-19 10:46:32 +02:00
|
|
|
ha-ffmpeg==1.9
|
2016-08-09 02:34:46 +02:00
|
|
|
|
2016-11-03 03:19:53 +01:00
|
|
|
# homeassistant.components.media_player.philips_js
|
2018-07-09 21:35:06 +02:00
|
|
|
ha-philipsjs==0.0.5
|
2016-11-03 03:19:53 +01:00
|
|
|
|
2017-09-24 16:12:38 +10:00
|
|
|
# homeassistant.components.sensor.geo_rss_events
|
|
|
|
haversine==0.4.5
|
|
|
|
|
2016-03-07 16:45:37 -08:00
|
|
|
# homeassistant.components.mqtt.server
|
2018-05-07 16:52:33 +03:00
|
|
|
hbmqtt==0.9.2
|
2016-03-07 16:45:37 -08:00
|
|
|
|
2016-08-19 09:17:28 +02:00
|
|
|
# homeassistant.components.climate.heatmiser
|
2016-01-31 23:52:42 -08:00
|
|
|
heatmiserV3==0.9.1
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.switch.hikvisioncam
|
2017-11-15 19:15:45 -05:00
|
|
|
hikvision==0.4
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2017-08-16 18:26:30 -05:00
|
|
|
# homeassistant.components.notify.hipchat
|
|
|
|
hipnotify==1.0.8
|
|
|
|
|
2018-06-17 15:38:56 +02:00
|
|
|
# homeassistant.components.sensor.pi_hole
|
|
|
|
hole==0.3.0
|
|
|
|
|
2017-03-16 07:46:13 +01:00
|
|
|
# homeassistant.components.binary_sensor.workday
|
2018-05-04 17:09:05 +02:00
|
|
|
holidays==0.9.5
|
2017-03-16 07:46:13 +01:00
|
|
|
|
2017-10-24 19:36:27 -07:00
|
|
|
# homeassistant.components.frontend
|
2018-07-26 09:38:10 +02:00
|
|
|
home-assistant-frontend==20180726.0
|
2017-10-24 19:36:27 -07:00
|
|
|
|
2018-04-13 10:25:35 -07:00
|
|
|
# homeassistant.components.homekit_controller
|
2018-07-17 01:06:06 -07:00
|
|
|
# homekit==0.10
|
2018-04-13 10:25:35 -07:00
|
|
|
|
2018-03-18 16:57:53 +01:00
|
|
|
# homeassistant.components.homematicip_cloud
|
2018-07-15 02:59:19 +02:00
|
|
|
homematicip==0.9.8
|
2018-03-18 16:57:53 +01:00
|
|
|
|
2018-07-09 22:33:58 +03:00
|
|
|
# homeassistant.components.google
|
2017-11-01 04:33:47 +01:00
|
|
|
# homeassistant.components.remember_the_milk
|
|
|
|
httplib2==0.10.3
|
|
|
|
|
2018-05-26 12:42:52 -04:00
|
|
|
# homeassistant.components.hydrawise
|
|
|
|
hydrawiser==0.1.1
|
|
|
|
|
2017-06-22 07:09:08 +02:00
|
|
|
# homeassistant.components.sensor.bh1750
|
2017-06-21 17:24:39 +02:00
|
|
|
# homeassistant.components.sensor.bme280
|
2017-06-22 07:05:58 +02:00
|
|
|
# homeassistant.components.sensor.htu21d
|
2017-06-29 11:03:52 +02:00
|
|
|
# i2csense==0.0.4
|
2017-06-21 17:24:39 +02:00
|
|
|
|
2018-06-07 10:43:51 -07:00
|
|
|
# homeassistant.components.watson_iot
|
|
|
|
ibmiotf==0.3.4
|
|
|
|
|
2018-01-07 09:52:31 +13:00
|
|
|
# homeassistant.components.light.iglo
|
2018-03-11 17:31:57 +13:00
|
|
|
iglo==1.2.7
|
2018-01-07 09:52:31 +13:00
|
|
|
|
2018-01-20 16:29:50 +01:00
|
|
|
# homeassistant.components.ihc
|
2018-03-03 12:48:58 +01:00
|
|
|
ihcsdk==2.2.0
|
2018-01-20 16:29:50 +01:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.influxdb
|
2016-10-27 08:48:57 +02:00
|
|
|
# homeassistant.components.sensor.influxdb
|
2018-02-04 18:23:26 +01:00
|
|
|
influxdb==5.0.0
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2017-01-08 17:33:35 -06:00
|
|
|
# homeassistant.components.insteon_local
|
2018-01-08 11:18:10 -06:00
|
|
|
insteonlocal==0.53
|
2017-01-08 17:33:35 -06:00
|
|
|
|
2017-02-21 01:53:39 -06:00
|
|
|
# homeassistant.components.insteon_plm
|
2018-07-18 10:11:54 -04:00
|
|
|
insteonplm==0.11.7
|
2017-02-21 01:53:39 -06:00
|
|
|
|
2018-05-24 03:25:27 -04:00
|
|
|
# homeassistant.components.sensor.iperf3
|
|
|
|
iperf3==0.1.10
|
|
|
|
|
2017-06-26 22:30:25 +02:00
|
|
|
# homeassistant.components.verisure
|
|
|
|
jsonpath==0.75
|
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.media_player.kodi
|
2016-09-14 21:54:45 +02:00
|
|
|
# homeassistant.components.notify.kodi
|
2017-04-06 18:12:24 -04:00
|
|
|
jsonrpc-async==0.6
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2017-02-18 03:26:07 -05:00
|
|
|
# homeassistant.components.media_player.kodi
|
2018-03-11 20:46:16 +01:00
|
|
|
jsonrpc-websocket==0.6
|
2017-02-18 03:26:07 -05:00
|
|
|
|
2016-08-23 06:42:05 +02:00
|
|
|
# homeassistant.scripts.keyring
|
2018-07-13 20:02:13 +02:00
|
|
|
keyring==13.2.1
|
2018-01-10 04:51:35 +01:00
|
|
|
|
|
|
|
# homeassistant.scripts.keyring
|
2018-05-09 11:31:18 +02:00
|
|
|
keyrings.alt==3.1
|
2016-08-23 06:42:05 +02:00
|
|
|
|
2018-06-12 12:36:02 +02:00
|
|
|
# homeassistant.components.lock.kiwi
|
|
|
|
kiwiki-client==0.1.1
|
|
|
|
|
2018-05-15 13:58:00 -04:00
|
|
|
# homeassistant.components.konnected
|
|
|
|
konnected==0.1.2
|
|
|
|
|
2018-04-10 18:38:23 -07:00
|
|
|
# homeassistant.components.eufy
|
2018-05-28 23:42:27 -07:00
|
|
|
lakeside==0.7
|
2018-04-10 18:38:23 -07:00
|
|
|
|
2016-10-04 09:57:37 +02:00
|
|
|
# homeassistant.components.device_tracker.owntracks
|
2017-09-28 00:49:35 -07:00
|
|
|
# homeassistant.components.device_tracker.owntracks_http
|
2017-10-27 08:01:32 +02:00
|
|
|
libnacl==1.6.1
|
2016-10-04 09:57:37 +02:00
|
|
|
|
2017-06-14 13:56:03 +02:00
|
|
|
# homeassistant.components.dyson
|
2017-08-06 13:08:46 +02:00
|
|
|
libpurecoollink==0.4.2
|
2017-06-14 13:56:03 +02:00
|
|
|
|
2017-09-12 00:43:55 -04:00
|
|
|
# homeassistant.components.camera.foscam
|
|
|
|
libpyfoscam==1.0
|
|
|
|
|
2017-04-30 06:39:11 +03:00
|
|
|
# homeassistant.components.device_tracker.mikrotik
|
2018-06-20 09:15:40 +02:00
|
|
|
librouteros==2.1.0
|
2017-04-30 06:39:11 +03:00
|
|
|
|
2016-11-23 08:22:52 +01:00
|
|
|
# homeassistant.components.media_player.soundtouch
|
2017-07-07 07:28:09 +02:00
|
|
|
libsoundtouch==0.7.2
|
2016-11-23 08:22:52 +01:00
|
|
|
|
2017-03-30 08:00:22 +02:00
|
|
|
# homeassistant.components.light.lifx_legacy
|
|
|
|
liffylights==0.9.4
|
|
|
|
|
2017-08-01 20:36:31 +02:00
|
|
|
# homeassistant.components.light.osramlightify
|
2018-01-10 00:35:34 +01:00
|
|
|
lightify==1.0.6.1
|
2017-08-01 20:36:31 +02:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.light.limitlessled
|
2018-07-15 23:24:35 +02:00
|
|
|
limitlessled==1.1.2
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2017-10-27 15:19:47 +01:00
|
|
|
# homeassistant.components.linode
|
2018-05-24 16:16:35 +01:00
|
|
|
linode-api==4.1.9b1
|
2017-10-27 15:19:47 +01:00
|
|
|
|
2017-02-03 08:52:52 +01:00
|
|
|
# homeassistant.components.media_player.liveboxplaytv
|
2017-12-13 10:58:49 +01:00
|
|
|
liveboxplaytv==2.0.2
|
2017-02-03 08:52:52 +01:00
|
|
|
|
2017-07-07 08:21:06 +02:00
|
|
|
# homeassistant.components.lametric
|
|
|
|
# homeassistant.components.notify.lametric
|
|
|
|
lmnotify==0.0.4
|
|
|
|
|
2018-03-30 22:47:20 +02:00
|
|
|
# homeassistant.components.device_tracker.google_maps
|
2018-05-27 20:16:47 +02:00
|
|
|
locationsharinglib==2.0.7
|
2018-03-30 22:47:20 +02:00
|
|
|
|
2017-12-12 08:09:47 +01:00
|
|
|
# homeassistant.components.sensor.luftdaten
|
2018-05-27 09:53:53 +02:00
|
|
|
luftdaten==0.2.0
|
2017-12-12 08:09:47 +01:00
|
|
|
|
2018-05-22 09:25:10 +02:00
|
|
|
# homeassistant.components.light.lw12wifi
|
|
|
|
lw12==0.9.2
|
|
|
|
|
2017-03-23 11:15:52 -04:00
|
|
|
# homeassistant.components.sensor.lyft
|
2017-09-25 13:34:48 -07:00
|
|
|
lyft_rides==0.2
|
2017-03-23 11:15:52 -04:00
|
|
|
|
2018-07-27 17:48:56 -04:00
|
|
|
# homeassistant.components.sensor.magicseaweed
|
|
|
|
magicseaweed==1.0.0
|
|
|
|
|
2018-05-05 16:00:36 +02:00
|
|
|
# homeassistant.components.matrix
|
|
|
|
matrix-client==0.2.0
|
2016-10-18 21:13:00 +02:00
|
|
|
|
2017-02-27 06:35:33 +01:00
|
|
|
# homeassistant.components.maxcube
|
|
|
|
maxcube-api==0.1.0
|
|
|
|
|
2016-03-15 18:09:19 +01:00
|
|
|
# homeassistant.components.notify.message_bird
|
2016-04-28 08:23:03 +02:00
|
|
|
messagebird==1.2.0
|
2016-03-15 18:09:19 +01:00
|
|
|
|
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-02-29 17:37:41 -08:00
|
|
|
mficlient==0.3.0
|
2016-02-06 21:36:41 +00:00
|
|
|
|
2016-09-14 07:37:57 +02:00
|
|
|
# homeassistant.components.sensor.miflora
|
2018-04-20 08:43:44 +02:00
|
|
|
miflora==0.4.0
|
2016-09-14 07:37:57 +02:00
|
|
|
|
2018-04-28 13:35:51 +02:00
|
|
|
# homeassistant.components.sensor.mitemp_bt
|
|
|
|
mitemp_bt==0.0.1
|
|
|
|
|
2017-08-31 10:26:33 -04:00
|
|
|
# homeassistant.components.sensor.mopar
|
2017-09-12 22:50:28 -04:00
|
|
|
motorparts==1.0.2
|
2017-08-31 10:26:33 -04:00
|
|
|
|
2017-02-07 03:07:11 -08:00
|
|
|
# homeassistant.components.tts
|
2018-07-29 23:35:27 +02:00
|
|
|
mutagen==1.41.0
|
2017-02-07 03:07:11 -08:00
|
|
|
|
2018-01-15 15:50:56 -05:00
|
|
|
# homeassistant.components.mychevy
|
2018-05-18 13:37:43 -04:00
|
|
|
mychevy==0.4.0
|
2018-01-15 15:50:56 -05:00
|
|
|
|
2017-08-27 16:53:20 -04:00
|
|
|
# homeassistant.components.mycroft
|
2017-09-05 07:05:31 -04:00
|
|
|
mycroftapi==2.0
|
2017-08-27 16:53:20 -04:00
|
|
|
|
2017-08-18 17:47:36 -04:00
|
|
|
# homeassistant.components.usps
|
2018-02-18 00:49:32 -05:00
|
|
|
myusps==1.3.2
|
2017-01-05 03:44:15 -05:00
|
|
|
|
2017-06-03 16:01:51 +02:00
|
|
|
# homeassistant.components.media_player.nad
|
2017-06-09 20:53:07 +02:00
|
|
|
# homeassistant.components.media_player.nadtcp
|
2018-01-20 06:41:12 +01:00
|
|
|
nad_receiver==0.0.9
|
2017-06-03 16:01:51 +02:00
|
|
|
|
2018-04-12 09:24:07 +02:00
|
|
|
# homeassistant.components.light.nanoleaf_aurora
|
2018-04-06 15:34:56 +02:00
|
|
|
nanoleaf==0.4.1
|
|
|
|
|
2018-05-29 16:03:00 +02:00
|
|
|
# homeassistant.components.sensor.netdata
|
|
|
|
netdata==0.1.2
|
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.discovery
|
2018-06-17 15:38:00 +02:00
|
|
|
netdisco==1.5.0
|
2016-01-21 02:02:32 +01:00
|
|
|
|
2016-02-15 15:54:07 -08:00
|
|
|
# homeassistant.components.sensor.neurio_energy
|
2017-01-26 07:07:50 -05:00
|
|
|
neurio==0.3.1
|
2016-02-15 15:54:07 -08:00
|
|
|
|
2017-10-27 22:19:12 +02:00
|
|
|
# homeassistant.components.sensor.nederlandse_spoorwegen
|
|
|
|
nsapi==2.7.4
|
|
|
|
|
2018-06-14 21:56:04 +10:00
|
|
|
# homeassistant.components.sensor.nsw_fuel_station
|
|
|
|
nsw-fuel-api-client==1.0.10
|
|
|
|
|
2017-11-11 00:22:37 -06:00
|
|
|
# homeassistant.components.nuheat
|
2017-12-24 09:43:56 -07:00
|
|
|
nuheat==0.3.0
|
2017-11-11 00:22:37 -06:00
|
|
|
|
2017-10-26 04:33:17 +13:00
|
|
|
# homeassistant.components.binary_sensor.trend
|
2017-06-08 03:26:24 -06:00
|
|
|
# homeassistant.components.image_processing.opencv
|
2018-07-29 08:46:20 +02:00
|
|
|
numpy==1.15.0
|
2017-05-02 22:55:51 -06:00
|
|
|
|
2016-11-19 01:29:20 -05:00
|
|
|
# homeassistant.components.google
|
2017-02-12 18:55:17 +01:00
|
|
|
oauth2client==4.0.0
|
2016-11-19 01:29:20 -05:00
|
|
|
|
2017-02-13 15:45:04 +00:00
|
|
|
# homeassistant.components.climate.oem
|
|
|
|
oemthermostat==1.1
|
|
|
|
|
2017-05-09 08:13:29 +03:00
|
|
|
# homeassistant.components.media_player.onkyo
|
2017-08-21 11:25:34 +02:00
|
|
|
onkyo-eiscp==1.2.4
|
2017-05-09 08:13:29 +03:00
|
|
|
|
2017-06-16 06:28:17 +01:00
|
|
|
# homeassistant.components.camera.onvif
|
|
|
|
onvif-py3==0.1.3
|
|
|
|
|
2017-01-30 15:29:56 -05:00
|
|
|
# homeassistant.components.sensor.openevse
|
2017-02-02 21:46:35 -05:00
|
|
|
openevsewifi==0.4
|
2017-01-30 15:29:56 -05:00
|
|
|
|
2017-02-22 22:01:06 +00:00
|
|
|
# homeassistant.components.media_player.openhome
|
2017-06-09 05:41:24 +01:00
|
|
|
openhomedevice==0.4.2
|
2017-02-22 22:01:06 +00:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.switch.orvibo
|
|
|
|
orvibo==1.1.1
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.mqtt
|
2017-06-17 12:34:12 +02:00
|
|
|
# homeassistant.components.shiftr
|
2017-10-15 19:12:43 +02:00
|
|
|
paho-mqtt==1.3.1
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2016-04-06 07:51:55 +02:00
|
|
|
# homeassistant.components.media_player.panasonic_viera
|
2018-02-13 16:06:30 +00:00
|
|
|
panasonic_viera==0.3.1
|
2016-04-06 07:51:55 +02:00
|
|
|
|
2016-11-28 09:42:57 +02:00
|
|
|
# homeassistant.components.media_player.dunehd
|
|
|
|
pdunehd==1.3
|
|
|
|
|
2016-02-02 21:49:11 +00:00
|
|
|
# homeassistant.components.device_tracker.aruba
|
2016-05-15 12:20:17 -07:00
|
|
|
# homeassistant.components.device_tracker.asuswrt
|
2016-11-09 20:36:57 +00:00
|
|
|
# homeassistant.components.device_tracker.cisco_ios
|
2017-11-17 14:47:40 -05:00
|
|
|
# homeassistant.components.device_tracker.unifi_direct
|
2016-06-12 18:35:12 -07:00
|
|
|
# homeassistant.components.media_player.pandora
|
2018-07-07 17:48:02 +03:00
|
|
|
pexpect==4.6.0
|
2016-02-02 21:49:11 +00:00
|
|
|
|
2017-05-10 07:36:33 +02:00
|
|
|
# homeassistant.components.rpi_pfio
|
|
|
|
pifacecommon==4.1.2
|
|
|
|
|
|
|
|
# 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 04:45:40 +02:00
|
|
|
# homeassistant.components.pilight
|
2016-10-19 22:02:11 +02:00
|
|
|
pilight==0.1.1
|
2016-08-10 04:45:40 +02:00
|
|
|
|
2018-03-08 18:23:52 -08:00
|
|
|
# homeassistant.components.camera.proxy
|
2018-07-29 23:39:01 +02:00
|
|
|
pillow==5.2.0
|
2018-03-08 18:23:52 -08:00
|
|
|
|
2017-11-23 19:21:24 -06:00
|
|
|
# homeassistant.components.dominos
|
|
|
|
pizzapi==0.0.3
|
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.media_player.plex
|
2016-06-15 02:07:00 -04: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
|
|
|
|
2016-08-24 18:54:34 +02:00
|
|
|
# homeassistant.components.sensor.mhz19
|
2016-08-07 22:14:01 +02:00
|
|
|
# homeassistant.components.sensor.serial_pm
|
2017-02-27 21:19:11 +02:00
|
|
|
pmsensor==0.4
|
2016-08-07 22:14:01 +02:00
|
|
|
|
2017-05-07 03:22:38 +03:00
|
|
|
# homeassistant.components.sensor.pocketcasts
|
|
|
|
pocketcasts==0.1
|
|
|
|
|
2018-05-02 20:37:41 +02:00
|
|
|
# homeassistant.components.sensor.postnl
|
2018-06-02 13:45:48 +02:00
|
|
|
postnl_api==1.0.2
|
2018-05-02 20:37:41 +02:00
|
|
|
|
2016-08-19 09:17:28 +02:00
|
|
|
# homeassistant.components.climate.proliphix
|
2016-11-18 05:05:05 -05:00
|
|
|
proliphix==0.4.1
|
2016-01-09 14:51:49 +01:00
|
|
|
|
2017-07-10 21:20:17 -07:00
|
|
|
# homeassistant.components.prometheus
|
2018-06-28 16:49:33 +02:00
|
|
|
prometheus_client==0.2.0
|
2017-07-10 21:20:17 -07:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.sensor.systemmonitor
|
2018-06-10 11:37:58 +02:00
|
|
|
psutil==5.4.6
|
2016-01-31 23:52:42 -08:00
|
|
|
|
2016-06-29 17:16:53 -04:00
|
|
|
# homeassistant.components.wink
|
2017-03-28 14:13:45 -04:00
|
|
|
pubnubsub-handler==1.0.2
|
2016-06-29 17:16:53 -04:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.notify.pushbullet
|
2017-04-22 14:01:30 +02:00
|
|
|
# homeassistant.components.sensor.pushbullet
|
2017-07-29 08:22:35 +02:00
|
|
|
pushbullet.py==0.11.0
|
2016-01-31 23:52:42 -08:00
|
|
|
|
|
|
|
# homeassistant.components.notify.pushetta
|
|
|
|
pushetta==1.0.15
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2017-04-20 02:32:20 -04:00
|
|
|
# homeassistant.components.light.rpi_gpio_pwm
|
2017-08-19 13:23:46 +02:00
|
|
|
pwmled==1.2.1
|
2017-04-20 02:32:20 -04:00
|
|
|
|
2018-02-18 00:24:51 -08:00
|
|
|
# homeassistant.components.august
|
2018-03-04 01:14:47 -08:00
|
|
|
py-august==0.4.0
|
2018-02-18 00:24:51 -08:00
|
|
|
|
2017-12-08 01:40:45 -08:00
|
|
|
# homeassistant.components.canary
|
2018-03-30 14:38:29 -07:00
|
|
|
py-canary==0.5.0
|
2017-12-08 01:40:45 -08:00
|
|
|
|
2015-11-17 00:18:42 -08:00
|
|
|
# homeassistant.components.sensor.cpuspeed
|
2018-04-02 11:58:22 +02:00
|
|
|
py-cpuinfo==4.0.0
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2018-02-03 03:17:01 +01:00
|
|
|
# homeassistant.components.melissa
|
2018-02-23 23:33:12 +01:00
|
|
|
py-melissa-climate==1.0.6
|
2018-02-03 03:17:01 +01:00
|
|
|
|
2017-09-29 03:02:48 -07:00
|
|
|
# homeassistant.components.camera.synology
|
2018-03-11 13:33:36 -06:00
|
|
|
py-synology==0.2.0
|
2017-09-29 03:02:48 -07:00
|
|
|
|
2017-01-20 21:39:18 +01:00
|
|
|
# homeassistant.components.hdmi_cec
|
2017-02-11 13:53:45 +01:00
|
|
|
pyCEC==0.4.13
|
2017-01-20 21:39:18 +01:00
|
|
|
|
2017-07-26 08:04:40 +01:00
|
|
|
# homeassistant.components.light.tplink
|
2017-01-14 07:20:47 +01:00
|
|
|
# homeassistant.components.switch.tplink
|
2018-06-20 13:29:36 -04:00
|
|
|
pyHS100==0.3.2
|
2017-01-14 07:20:47 +01:00
|
|
|
|
2016-03-14 08:25:04 +01:00
|
|
|
# homeassistant.components.rfxtrx
|
2018-04-21 10:54:11 +02:00
|
|
|
pyRFXtrx==0.22.1
|
2016-03-14 08:25:04 +01:00
|
|
|
|
2017-10-04 10:31:42 +02:00
|
|
|
# homeassistant.components.sensor.tibber
|
2018-04-10 22:12:55 +02:00
|
|
|
pyTibber==0.4.1
|
2017-10-04 10:31:42 +02:00
|
|
|
|
2017-07-11 23:44:01 +03:00
|
|
|
# homeassistant.components.switch.dlink
|
2017-09-01 15:27:43 +02:00
|
|
|
pyW215==0.6.0
|
2017-07-11 23:44:01 +03:00
|
|
|
|
2018-05-26 16:46:53 -04:00
|
|
|
# homeassistant.components.cover.ryobi_gdo
|
|
|
|
py_ryobi_gdo==0.0.10
|
|
|
|
|
2017-12-05 09:44:22 +01:00
|
|
|
# homeassistant.components.ads
|
|
|
|
pyads==2.2.6
|
|
|
|
|
2017-09-08 08:05:51 -06:00
|
|
|
# homeassistant.components.sensor.airvisual
|
2018-06-14 07:30:47 -06:00
|
|
|
pyairvisual==2.0.1
|
2017-09-08 08:05:51 -06:00
|
|
|
|
2017-03-29 00:21:40 -06:00
|
|
|
# homeassistant.components.alarm_control_panel.alarmdotcom
|
2018-05-05 09:21:58 -05:00
|
|
|
pyalarmdotcom==0.3.2
|
2017-03-29 00:21:40 -06:00
|
|
|
|
2017-05-31 03:25:25 -04:00
|
|
|
# homeassistant.components.arlo
|
2018-07-17 00:56:50 -05:00
|
|
|
pyarlo==0.2.0
|
2017-05-31 03:25:25 -04:00
|
|
|
|
2016-04-12 06:55:17 +02:00
|
|
|
# homeassistant.components.notify.xmpp
|
2017-10-11 15:26:34 +02:00
|
|
|
pyasn1-modules==0.1.5
|
2016-04-12 06:55:17 +02:00
|
|
|
|
|
|
|
# homeassistant.components.notify.xmpp
|
2017-10-11 15:26:34 +02:00
|
|
|
pyasn1==0.3.7
|
2016-04-12 06:55:17 +02:00
|
|
|
|
2018-06-05 17:55:53 +02:00
|
|
|
# homeassistant.components.netatmo
|
2018-07-18 16:58:45 +02:00
|
|
|
pyatmo==1.1.1
|
2018-06-05 17:55:53 +02:00
|
|
|
|
2017-07-05 06:37:18 +02:00
|
|
|
# homeassistant.components.apple_tv
|
2018-06-01 02:41:40 -04:00
|
|
|
pyatv==0.3.10
|
2017-02-07 09:55:19 +01:00
|
|
|
|
2016-10-14 04:43:51 +02:00
|
|
|
# homeassistant.components.device_tracker.bbox
|
2016-10-22 06:34:22 +02:00
|
|
|
# homeassistant.components.sensor.bbox
|
2016-10-14 04:43:51 +02:00
|
|
|
pybbox==0.0.5-alpha
|
|
|
|
|
2018-04-19 04:35:38 -05:00
|
|
|
# homeassistant.components.media_player.blackbird
|
|
|
|
pyblackbird==0.5
|
|
|
|
|
2016-04-19 08:18:46 -07:00
|
|
|
# homeassistant.components.device_tracker.bluetooth_tracker
|
|
|
|
# pybluez==0.22
|
|
|
|
|
2018-06-24 12:06:25 +03:00
|
|
|
# homeassistant.components.neato
|
2018-07-23 15:46:12 -07:00
|
|
|
pybotvac==0.0.9
|
2018-06-24 12:06:25 +03:00
|
|
|
|
2018-07-09 23:11:54 +02:00
|
|
|
# homeassistant.components.cloudflare
|
|
|
|
pycfdns==0.0.1
|
|
|
|
|
2018-03-07 03:33:13 -05:00
|
|
|
# homeassistant.components.media_player.channels
|
|
|
|
pychannels==1.0.0
|
|
|
|
|
2018-06-14 15:17:54 -04:00
|
|
|
# homeassistant.components.cast
|
2018-03-23 22:02:52 +01:00
|
|
|
pychromecast==2.1.0
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2016-06-25 03:06:36 -04:00
|
|
|
# homeassistant.components.media_player.cmus
|
2018-05-12 01:51:48 -04:00
|
|
|
pycmus==0.1.1
|
2016-06-25 03:06:36 -04:00
|
|
|
|
2017-06-28 18:04:54 +02:00
|
|
|
# homeassistant.components.comfoconnect
|
|
|
|
pycomfoconnect==0.3
|
|
|
|
|
2017-10-25 19:43:21 +02:00
|
|
|
# homeassistant.components.tts.microsoft
|
2017-12-01 12:38:20 +01:00
|
|
|
pycsspeechtts==1.0.2
|
2017-10-25 19:43:21 +02:00
|
|
|
|
2016-11-03 09:31:50 +01:00
|
|
|
# homeassistant.components.sensor.cups
|
|
|
|
# pycups==1.9.73
|
|
|
|
|
2018-01-04 12:05:27 +02:00
|
|
|
# homeassistant.components.daikin
|
|
|
|
# homeassistant.components.climate.daikin
|
|
|
|
pydaikin==0.4
|
|
|
|
|
2018-01-01 17:08:13 +01:00
|
|
|
# homeassistant.components.deconz
|
2018-07-02 23:14:38 +02:00
|
|
|
pydeconz==42
|
2018-01-01 17:08:13 +01:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.zwave
|
|
|
|
pydispatcher==2.0.5
|
2015-12-16 15:22:38 -05:00
|
|
|
|
2017-03-08 16:46:41 +01:00
|
|
|
# homeassistant.components.android_ip_webcam
|
2017-04-05 06:40:19 +02:00
|
|
|
pydroid-ipcam==0.8
|
2017-03-08 16:46:41 +01:00
|
|
|
|
2018-07-02 10:55:34 -04:00
|
|
|
# homeassistant.components.sensor.duke_energy
|
|
|
|
pydukeenergy==0.0.6
|
|
|
|
|
2018-05-29 10:23:12 -04:00
|
|
|
# homeassistant.components.sensor.ebox
|
|
|
|
pyebox==1.1.4
|
|
|
|
|
2017-12-29 13:05:58 -05:00
|
|
|
# homeassistant.components.climate.econet
|
2018-02-05 18:59:17 -05:00
|
|
|
pyeconet==0.0.5
|
2017-12-29 13:05:58 -05:00
|
|
|
|
2018-03-04 21:36:38 +02:00
|
|
|
# homeassistant.components.switch.edimax
|
|
|
|
pyedimax==0.1
|
|
|
|
|
2017-05-02 11:38:27 -04:00
|
|
|
# homeassistant.components.eight_sleep
|
2018-06-15 15:24:09 -04:00
|
|
|
pyeight==0.0.9
|
2017-05-02 11:38:27 -04:00
|
|
|
|
2016-10-31 08:29:08 -04:00
|
|
|
# homeassistant.components.media_player.emby
|
2018-03-08 18:23:51 -05:00
|
|
|
pyemby==1.5
|
2016-10-31 08:29:08 -04:00
|
|
|
|
2016-06-19 12:45:07 -05:00
|
|
|
# homeassistant.components.envisalink
|
2017-08-16 05:08:15 -05:00
|
|
|
pyenvisalink==2.2
|
2016-06-19 12:45:07 -05:00
|
|
|
|
2017-10-23 14:52:39 +01:00
|
|
|
# homeassistant.components.climate.ephember
|
|
|
|
pyephember==0.1.1
|
|
|
|
|
2017-02-15 15:21:38 -05:00
|
|
|
# homeassistant.components.sensor.fido
|
2018-04-16 22:16:28 -04:00
|
|
|
pyfido==2.1.1
|
2017-02-15 15:21:38 -05:00
|
|
|
|
2017-06-13 07:06:47 +02:00
|
|
|
# homeassistant.components.climate.flexit
|
|
|
|
pyflexit==0.3
|
|
|
|
|
2018-06-19 11:31:21 +03:00
|
|
|
# homeassistant.components.binary_sensor.flic
|
|
|
|
pyflic-homeassistant==0.4.dev0
|
|
|
|
|
2018-07-27 12:11:32 +03:00
|
|
|
# homeassistant.components.light.futurenow
|
2018-07-30 08:09:59 +03:00
|
|
|
pyfnip==0.2
|
2018-07-27 12:11:32 +03:00
|
|
|
|
2018-04-17 12:40:36 +02:00
|
|
|
# homeassistant.components.fritzbox
|
|
|
|
pyfritzhome==0.3.7
|
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.ifttt
|
|
|
|
pyfttt==0.3
|
2015-12-16 20:54:25 +01:00
|
|
|
|
2018-05-14 21:52:54 +02:00
|
|
|
# homeassistant.components.sensor.skybeacon
|
|
|
|
pygatt==3.2.0
|
|
|
|
|
2018-04-06 23:53:00 +10:00
|
|
|
# homeassistant.components.cover.gogogate2
|
2018-05-09 01:42:18 +10:00
|
|
|
pygogogate2==0.1.1
|
2018-04-06 23:53:00 +10:00
|
|
|
|
2018-07-15 22:32:20 +03:00
|
|
|
# homeassistant.components.sensor.gtfs
|
|
|
|
pygtfs-homeassistant==0.1.3.dev0
|
|
|
|
|
2016-12-01 15:48:08 -05:00
|
|
|
# homeassistant.components.remote.harmony
|
2018-01-30 00:54:49 +01:00
|
|
|
pyharmony==1.0.20
|
2016-12-01 15:48:08 -05:00
|
|
|
|
2016-12-13 02:10:16 -05:00
|
|
|
# homeassistant.components.binary_sensor.hikvision
|
2018-02-28 23:33:03 -05:00
|
|
|
pyhik==0.1.8
|
2016-12-13 02:10:16 -05:00
|
|
|
|
2017-11-23 12:10:23 +00:00
|
|
|
# homeassistant.components.hive
|
2018-04-16 20:00:13 +01:00
|
|
|
pyhiveapi==0.2.14
|
2017-11-23 12:10:23 +00:00
|
|
|
|
2016-06-24 10:06:58 +02:00
|
|
|
# homeassistant.components.homematic
|
2018-07-22 00:18:50 +02:00
|
|
|
pyhomematic==0.1.46
|
2016-06-24 10:06:58 +02:00
|
|
|
|
2017-02-16 04:22:21 -05:00
|
|
|
# homeassistant.components.sensor.hydroquebec
|
2018-04-16 20:52:56 -04:00
|
|
|
pyhydroquebec==2.2.2
|
2017-02-16 04:22:21 -05:00
|
|
|
|
2017-12-03 16:48:12 +01:00
|
|
|
# homeassistant.components.alarm_control_panel.ialarm
|
|
|
|
pyialarm==0.2
|
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.device_tracker.icloud
|
2016-07-26 23:53:31 +02:00
|
|
|
pyicloud==0.9.1
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2018-06-03 22:01:48 +01:00
|
|
|
# homeassistant.components.weather.ipma
|
|
|
|
pyipma==1.1.3
|
|
|
|
|
2017-10-22 13:18:34 +01:00
|
|
|
# homeassistant.components.sensor.irish_rail_transport
|
|
|
|
pyirishrail==0.0.2
|
|
|
|
|
2017-01-24 10:02:17 +01:00
|
|
|
# homeassistant.components.binary_sensor.iss
|
2016-12-26 16:02:11 +01:00
|
|
|
pyiss==1.0.1
|
|
|
|
|
2017-02-13 03:10:34 -07:00
|
|
|
# homeassistant.components.remote.itach
|
2017-10-03 00:17:36 -06:00
|
|
|
pyitachip2ir==0.0.7
|
2017-02-13 03:10:34 -07:00
|
|
|
|
2017-05-13 00:12:47 -04:00
|
|
|
# homeassistant.components.kira
|
|
|
|
pykira==0.1.1
|
|
|
|
|
2017-03-06 17:37:29 +01:00
|
|
|
# homeassistant.components.sensor.kwb
|
|
|
|
pykwb==0.0.8
|
|
|
|
|
2017-11-03 08:59:11 +01:00
|
|
|
# homeassistant.components.sensor.lacrosse
|
2018-01-15 22:49:17 +01:00
|
|
|
pylacrosse==0.3.1
|
2017-11-03 08:59:11 +01:00
|
|
|
|
2016-05-15 21:11:41 +01:00
|
|
|
# homeassistant.components.sensor.lastfm
|
2018-06-10 11:38:35 +02:00
|
|
|
pylast==2.3.0
|
2016-05-15 21:11:41 +01:00
|
|
|
|
2018-07-02 10:57:26 +03:00
|
|
|
# homeassistant.components.media_player.lg_netcast
|
|
|
|
pylgnetcast-homeassistant==0.2.0.dev0
|
|
|
|
|
2017-04-20 01:36:11 +02:00
|
|
|
# homeassistant.components.media_player.webostv
|
|
|
|
# homeassistant.components.notify.webostv
|
2017-04-26 05:20:54 +02:00
|
|
|
pylgtv==0.1.7
|
2017-04-20 01:36:11 +02:00
|
|
|
|
2016-11-01 20:44:25 -07:00
|
|
|
# homeassistant.components.litejet
|
|
|
|
pylitejet==0.1
|
|
|
|
|
2016-03-31 17:00:43 +01:00
|
|
|
# homeassistant.components.sensor.loopenergy
|
2018-03-01 16:05:18 +00:00
|
|
|
pyloopenergy==0.0.18
|
2016-03-31 17:00:43 +01:00
|
|
|
|
2017-05-07 19:32:13 -05:00
|
|
|
# homeassistant.components.lutron_caseta
|
2018-04-20 06:35:56 -07:00
|
|
|
pylutron-caseta==0.5.0
|
2017-05-07 19:32:13 -05:00
|
|
|
|
2017-05-20 04:27:35 -07:00
|
|
|
# homeassistant.components.lutron
|
|
|
|
pylutron==0.1.0
|
|
|
|
|
2017-05-04 19:34:00 +02:00
|
|
|
# homeassistant.components.notify.mailgun
|
|
|
|
pymailgunner==1.4
|
|
|
|
|
2018-02-03 13:29:55 +00:00
|
|
|
# homeassistant.components.media_player.mediaroom
|
2018-04-17 03:21:39 +01:00
|
|
|
pymediaroom==0.6.3
|
2018-02-03 13:29:55 +00:00
|
|
|
|
2018-02-17 00:09:20 +01:00
|
|
|
# homeassistant.components.media_player.xiaomi_tv
|
2018-06-05 19:13:16 +02:00
|
|
|
pymitv==1.4.0
|
2018-02-17 00:09:20 +01:00
|
|
|
|
2016-10-25 00:49:49 -04:00
|
|
|
# homeassistant.components.mochad
|
2018-01-30 05:13:30 -08:00
|
|
|
pymochad==0.2.0
|
2016-10-25 00:49:49 -04:00
|
|
|
|
2017-05-20 22:19:22 +03:00
|
|
|
# homeassistant.components.modbus
|
2017-07-04 17:01:35 +02:00
|
|
|
pymodbus==1.3.1
|
2017-05-20 22:19:22 +03:00
|
|
|
|
2017-10-18 03:11:36 -06:00
|
|
|
# homeassistant.components.media_player.monoprice
|
2017-12-22 02:26:34 -07:00
|
|
|
pymonoprice==0.3
|
2017-10-18 03:11:36 -06:00
|
|
|
|
2017-09-05 18:07:58 +02:00
|
|
|
# homeassistant.components.media_player.yamaha_musiccast
|
2017-12-11 22:29:52 +01:00
|
|
|
pymusiccast==0.1.6
|
2017-09-05 18:07:58 +02:00
|
|
|
|
2017-06-03 18:12:36 +03:00
|
|
|
# homeassistant.components.cover.myq
|
2018-06-13 02:02:27 -04:00
|
|
|
pymyq==0.0.11
|
2017-06-03 18:12:36 +03:00
|
|
|
|
2017-05-07 03:22:38 +03:00
|
|
|
# homeassistant.components.mysensors
|
2018-07-19 22:52:03 +02:00
|
|
|
pymysensors==0.16.0
|
2017-05-07 03:22:38 +03:00
|
|
|
|
2017-08-14 10:02:37 +02:00
|
|
|
# homeassistant.components.lock.nello
|
2017-09-01 12:02:22 +02:00
|
|
|
pynello==1.5.1
|
2017-08-14 10:02:37 +02:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.device_tracker.netgear
|
2018-05-02 15:38:24 +02:00
|
|
|
pynetgear==0.4.0
|
2015-08-29 22:19:52 -04:00
|
|
|
|
2016-06-10 08:40:14 +02:00
|
|
|
# homeassistant.components.switch.netio
|
|
|
|
pynetio==0.1.6
|
|
|
|
|
2017-02-02 15:15:27 +01:00
|
|
|
# homeassistant.components.lock.nuki
|
2017-08-07 14:58:31 +02:00
|
|
|
pynuki==1.3.1
|
2017-02-02 15:15:27 +01:00
|
|
|
|
2016-12-01 02:58:16 -05: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 15:07:31 -08:00
|
|
|
# homeassistant.components.binary_sensor.nx584
|
2017-01-02 23:19:33 -08:00
|
|
|
pynx584==0.4
|
2016-02-05 23:11:47 +00:00
|
|
|
|
2018-01-25 19:46:48 +01:00
|
|
|
# homeassistant.components.iota
|
2018-05-13 17:58:57 +02:00
|
|
|
pyota==2.0.5
|
2018-01-25 19:46:48 +01:00
|
|
|
|
2017-07-07 06:25:54 +02:00
|
|
|
# homeassistant.components.sensor.otp
|
|
|
|
pyotp==2.2.6
|
|
|
|
|
2015-11-17 00:18:42 -08:00
|
|
|
# homeassistant.components.sensor.openweathermap
|
2016-10-25 06:53:03 +02:00
|
|
|
# homeassistant.components.weather.openweathermap
|
2018-07-29 23:37:38 +02:00
|
|
|
pyowm==2.9.0
|
2015-09-04 16:51:25 +01:00
|
|
|
|
2018-01-26 10:40:02 -07:00
|
|
|
# homeassistant.components.sensor.pollen
|
2018-06-24 11:04:31 -06:00
|
|
|
pypollencom==2.1.0
|
2018-01-26 10:40:02 -07:00
|
|
|
|
2016-12-29 11:08:11 +02:00
|
|
|
# homeassistant.components.qwikswitch
|
2018-04-21 08:34:42 +02:00
|
|
|
pyqwikswitch==0.8
|
2016-12-29 11:08:11 +02:00
|
|
|
|
2017-12-25 10:07:18 +01:00
|
|
|
# homeassistant.components.rainbird
|
2018-05-25 00:39:41 -04:00
|
|
|
pyrainbird==0.1.6
|
2017-10-11 15:56:18 +02:00
|
|
|
|
2018-05-07 00:35:55 -07:00
|
|
|
# homeassistant.components.sabnzbd
|
2018-03-10 00:27:13 -08:00
|
|
|
pysabnzbd==1.0.1
|
2018-02-11 09:33:56 -08:00
|
|
|
|
2017-05-03 03:23:36 +03:00
|
|
|
# homeassistant.components.climate.sensibo
|
2018-05-10 22:11:02 +03:00
|
|
|
pysensibo==1.0.3
|
2017-05-03 03:23:36 +03:00
|
|
|
|
2017-10-18 11:20:19 +02:00
|
|
|
# homeassistant.components.sensor.serial
|
|
|
|
pyserial-asyncio==0.4
|
|
|
|
|
2016-05-04 03:23:38 +02:00
|
|
|
# homeassistant.components.switch.acer_projector
|
2016-09-02 15:42:38 +02:00
|
|
|
pyserial==3.1.1
|
2016-05-04 03:23:38 +02:00
|
|
|
|
2017-06-05 00:06:18 -05:00
|
|
|
# homeassistant.components.lock.sesame
|
2017-06-08 17:21:56 -05:00
|
|
|
pysesame==0.1.0
|
2017-06-05 00:06:18 -05:00
|
|
|
|
2018-01-28 07:04:40 -06:00
|
|
|
# homeassistant.components.goalfeed
|
|
|
|
pysher==0.2.0
|
|
|
|
|
2017-01-09 22:35:47 +02:00
|
|
|
# homeassistant.components.sensor.sma
|
2018-02-13 22:03:56 +02:00
|
|
|
pysma==0.2
|
2017-01-09 22:35:47 +02:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.device_tracker.snmp
|
2016-06-09 06:16:43 +02:00
|
|
|
# homeassistant.components.sensor.snmp
|
2017-10-25 17:09:29 +03:00
|
|
|
# homeassistant.components.switch.snmp
|
2018-01-06 19:54:15 +01:00
|
|
|
pysnmp==4.4.4
|
2015-09-08 20:11:25 -07:00
|
|
|
|
2018-03-15 22:36:03 -05:00
|
|
|
# homeassistant.components.notify.stride
|
|
|
|
pystride==0.1.7
|
|
|
|
|
2018-03-18 17:26:33 +01:00
|
|
|
# homeassistant.components.sensor.syncthru
|
|
|
|
pysyncthru==0.3.1
|
|
|
|
|
2017-12-13 10:58:49 +01:00
|
|
|
# homeassistant.components.media_player.liveboxplaytv
|
2018-04-06 11:21:05 +02:00
|
|
|
pyteleloisirs==3.4
|
2017-12-13 10:58:49 +01:00
|
|
|
|
2017-05-02 19:15:02 +03:00
|
|
|
# homeassistant.components.sensor.thinkingcleaner
|
|
|
|
# homeassistant.components.switch.thinkingcleaner
|
|
|
|
pythinkingcleaner==0.0.3
|
|
|
|
|
2017-06-05 01:48:38 -04:00
|
|
|
# homeassistant.components.sensor.blockchain
|
|
|
|
python-blockchain-api==0.0.2
|
|
|
|
|
2017-02-16 15:34:34 +01:00
|
|
|
# homeassistant.components.media_player.clementine
|
|
|
|
python-clementine-remote==1.0.1
|
|
|
|
|
2016-09-30 18:30:44 +02:00
|
|
|
# homeassistant.components.digital_ocean
|
2017-12-27 09:20:44 +01:00
|
|
|
python-digitalocean==1.13.2
|
2016-09-30 18:30:44 +02:00
|
|
|
|
2017-05-04 01:48:43 -04:00
|
|
|
# homeassistant.components.ecobee
|
2018-04-13 20:36:46 -05:00
|
|
|
python-ecobee-api==0.0.18
|
2017-05-04 01:48:43 -04:00
|
|
|
|
2017-01-14 06:34:35 +01:00
|
|
|
# homeassistant.components.climate.eq3btsmart
|
2018-02-19 00:37:42 +01:00
|
|
|
# python-eq3bt==0.1.9
|
2017-01-14 06:34:35 +01:00
|
|
|
|
2017-06-05 01:48:04 -04:00
|
|
|
# homeassistant.components.sensor.etherscan
|
2018-01-26 00:08:08 -05:00
|
|
|
python-etherscan-api==0.0.3
|
2017-06-05 01:48:04 -04:00
|
|
|
|
2018-05-14 16:52:35 -04:00
|
|
|
# homeassistant.components.camera.familyhub
|
|
|
|
python-family-hub-local==0.0.2
|
|
|
|
|
2016-10-05 21:42:58 +02:00
|
|
|
# homeassistant.components.sensor.darksky
|
2018-01-07 21:59:32 +00:00
|
|
|
# homeassistant.components.weather.darksky
|
2018-03-17 17:43:07 +01:00
|
|
|
python-forecastio==1.4.0
|
2015-09-11 19:38:42 -04:00
|
|
|
|
2017-10-30 03:40:14 -04:00
|
|
|
# homeassistant.components.gc100
|
2017-11-09 11:54:45 -05:00
|
|
|
python-gc100==1.0.3a
|
2017-10-30 03:40:14 -04:00
|
|
|
|
2016-08-16 08:19:11 +02:00
|
|
|
# homeassistant.components.sensor.hp_ilo
|
2016-11-21 17:31:14 +01:00
|
|
|
python-hpilo==3.9
|
2016-08-16 08:19:11 +02:00
|
|
|
|
2017-05-04 01:48:43 -04:00
|
|
|
# homeassistant.components.joaoapps_join
|
|
|
|
# homeassistant.components.notify.joaoapps_join
|
2017-05-04 16:14:14 -04:00
|
|
|
python-join-api==0.0.2
|
2017-05-04 01:48:43 -04:00
|
|
|
|
2017-06-06 03:39:31 +12:00
|
|
|
# homeassistant.components.juicenet
|
|
|
|
python-juicenet==0.0.5
|
|
|
|
|
2016-05-23 21:47:46 -07:00
|
|
|
# homeassistant.components.lirc
|
2016-10-11 08:44:41 +02:00
|
|
|
# python-lirc==1.2.3
|
2016-05-22 22:19:10 -07:00
|
|
|
|
2018-04-02 19:45:12 +02:00
|
|
|
# homeassistant.components.device_tracker.xiaomi_miio
|
2017-10-25 08:50:01 +02:00
|
|
|
# homeassistant.components.fan.xiaomi_miio
|
2017-09-14 18:49:03 -04:00
|
|
|
# homeassistant.components.light.xiaomi_miio
|
2018-02-06 19:47:24 +01:00
|
|
|
# homeassistant.components.remote.xiaomi_miio
|
2018-03-16 22:13:04 +01:00
|
|
|
# homeassistant.components.sensor.xiaomi_miio
|
2017-10-09 07:11:11 +02:00
|
|
|
# homeassistant.components.switch.xiaomi_miio
|
2017-09-14 18:49:03 -04:00
|
|
|
# homeassistant.components.vacuum.xiaomi_miio
|
2018-06-04 23:50:18 +02:00
|
|
|
python-miio==0.4.0
|
2017-07-07 06:44:34 +02:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.media_player.mpd
|
2018-04-17 11:55:35 +02:00
|
|
|
python-mpd2==1.0.0
|
2015-09-21 11:45:52 -04:00
|
|
|
|
2017-04-18 18:03:56 +02:00
|
|
|
# homeassistant.components.light.mystrom
|
2016-07-15 18:02:20 +02:00
|
|
|
# homeassistant.components.switch.mystrom
|
2018-06-10 11:38:23 +02:00
|
|
|
python-mystrom==0.4.4
|
2016-07-15 18:02:20 +02:00
|
|
|
|
2017-02-07 16:55:49 -05:00
|
|
|
# homeassistant.components.nest
|
2018-06-25 10:04:32 -07:00
|
|
|
python-nest==4.0.3
|
2017-02-07 16:55:49 -05:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.device_tracker.nmap_tracker
|
2016-07-31 22:47:46 +02:00
|
|
|
python-nmap==0.6.1
|
2015-12-16 15:22:38 -05:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.notify.pushover
|
2017-08-20 01:00:07 +10:00
|
|
|
python-pushover==0.3
|
2015-12-21 10:24:22 +01:00
|
|
|
|
2017-06-07 04:24:07 -04:00
|
|
|
# homeassistant.components.sensor.ripple
|
2017-12-13 15:21:14 -05:00
|
|
|
python-ripple-api==0.0.3
|
2017-06-07 04:24:07 -04:00
|
|
|
|
2017-05-10 06:23:19 +03:00
|
|
|
# homeassistant.components.media_player.roku
|
2018-01-20 00:56:56 -05:00
|
|
|
python-roku==3.1.5
|
2017-05-10 06:23:19 +03:00
|
|
|
|
2017-12-28 15:39:24 -05:00
|
|
|
# homeassistant.components.sensor.sochain
|
|
|
|
python-sochain-api==0.0.2
|
|
|
|
|
2018-02-27 22:21:56 +01:00
|
|
|
# homeassistant.components.media_player.songpal
|
2018-03-25 08:24:03 +02:00
|
|
|
python-songpal==0.0.7
|
2018-02-27 22:21:56 +01:00
|
|
|
|
2016-11-03 05:17:29 +01:00
|
|
|
# homeassistant.components.sensor.synologydsm
|
2018-07-04 01:46:01 -04:00
|
|
|
python-synology==0.2.0
|
2016-11-03 05:17:29 +01:00
|
|
|
|
2017-07-02 21:54:59 +02:00
|
|
|
# homeassistant.components.tado
|
2018-04-02 10:36:38 +02:00
|
|
|
python-tado==0.2.3
|
2017-07-02 21:54:59 +02:00
|
|
|
|
2017-05-10 06:42:17 +02:00
|
|
|
# homeassistant.components.telegram_bot
|
2018-05-13 17:59:25 +02:00
|
|
|
python-telegram-bot==10.1.0
|
2015-10-07 21:45:24 +00:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.sensor.twitch
|
2016-07-17 22:05:50 +02:00
|
|
|
python-twitch==1.3.0
|
2015-10-09 14:13:05 +02:00
|
|
|
|
2017-07-26 14:03:29 +02:00
|
|
|
# homeassistant.components.velbus
|
|
|
|
python-velbus==2.0.11
|
|
|
|
|
2016-12-11 23:59:12 +01:00
|
|
|
# homeassistant.components.media_player.vlc
|
|
|
|
python-vlc==1.1.2
|
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.wink
|
2018-06-29 14:26:06 -07:00
|
|
|
python-wink==1.9.1
|
2015-10-15 12:13:35 +02:00
|
|
|
|
2017-09-16 08:13:30 +02:00
|
|
|
# homeassistant.components.sensor.swiss_public_transport
|
2018-06-10 11:37:44 +02:00
|
|
|
python_opendata_transport==0.1.3
|
2017-09-16 08:13:30 +02:00
|
|
|
|
2017-05-05 17:57:14 -04:00
|
|
|
# homeassistant.components.zwave
|
2018-02-03 17:08:48 +01:00
|
|
|
python_openzwave==0.4.3
|
2017-05-05 17:57:14 -04:00
|
|
|
|
2018-03-02 12:50:00 +01:00
|
|
|
# homeassistant.components.egardia
|
2018-03-22 18:53:52 +01:00
|
|
|
pythonegardia==1.0.39
|
2017-08-05 22:04:00 +02:00
|
|
|
|
2017-10-24 08:34:06 +01:00
|
|
|
# homeassistant.components.sensor.whois
|
|
|
|
pythonwhois==2.4.3
|
|
|
|
|
2017-11-11 15:21:03 -07:00
|
|
|
# homeassistant.components.device_tracker.tile
|
2018-07-03 20:41:54 -06:00
|
|
|
pytile==2.0.2
|
2017-11-11 15:21:03 -07:00
|
|
|
|
2018-01-06 11:23:24 +01:00
|
|
|
# homeassistant.components.climate.touchline
|
2018-02-05 09:33:07 +01:00
|
|
|
pytouchline==0.7
|
2018-01-06 11:23:24 +01:00
|
|
|
|
2017-01-12 18:16:05 -05:00
|
|
|
# homeassistant.components.device_tracker.trackr
|
|
|
|
pytrackr==0.0.5
|
|
|
|
|
2017-04-16 14:37:39 -07:00
|
|
|
# homeassistant.components.tradfri
|
2018-06-13 06:17:52 +01:00
|
|
|
pytradfri[async]==5.5.1
|
2017-04-13 19:04:42 +02:00
|
|
|
|
2016-12-05 23:35:54 -06:00
|
|
|
# homeassistant.components.device_tracker.unifi
|
2017-06-17 13:09:27 -05:00
|
|
|
pyunifi==2.13
|
2016-12-05 23:35:54 -06:00
|
|
|
|
2018-04-12 23:22:52 +01:00
|
|
|
# homeassistant.components.upnp
|
2018-05-01 13:51:47 +01:00
|
|
|
pyupnp-async==0.1.0.2
|
2018-04-12 23:22:52 +01:00
|
|
|
|
2018-06-10 10:28:53 +02:00
|
|
|
# homeassistant.components.binary_sensor.uptimerobot
|
2018-06-10 10:58:45 +02:00
|
|
|
pyuptimerobot==0.0.5
|
2018-06-10 10:28:53 +02:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.keyboard
|
2016-09-11 21:59:48 -07:00
|
|
|
# pyuserinput==0.1.11
|
2016-01-31 23:52:42 -08:00
|
|
|
|
2016-03-15 09:17:09 +00:00
|
|
|
# homeassistant.components.vera
|
2018-07-28 11:17:04 -06:00
|
|
|
pyvera==0.2.44
|
2015-10-15 10:13:02 -05:00
|
|
|
|
2018-03-14 03:10:47 -04:00
|
|
|
# homeassistant.components.switch.vesync
|
|
|
|
pyvesync==0.1.1
|
|
|
|
|
2017-07-11 13:55:46 -07:00
|
|
|
# homeassistant.components.media_player.vizio
|
2018-04-28 15:05:27 -04:00
|
|
|
pyvizio==0.0.3
|
2017-07-11 13:55:46 -07:00
|
|
|
|
2017-07-08 16:12:19 +02:00
|
|
|
# homeassistant.components.velux
|
|
|
|
pyvlx==0.1.3
|
|
|
|
|
2016-11-18 21:03:44 +00:00
|
|
|
# homeassistant.components.notify.html5
|
2018-03-05 03:46:09 +01:00
|
|
|
pywebpush==1.6.0
|
2016-11-18 21:03:44 +00:00
|
|
|
|
2016-02-19 01:57:32 -05:00
|
|
|
# homeassistant.components.wemo
|
2018-06-19 23:16:31 +08:00
|
|
|
pywemo==0.4.28
|
2015-11-08 20:10:30 -08:00
|
|
|
|
2018-01-25 14:48:38 -08:00
|
|
|
# homeassistant.components.camera.xeoma
|
2018-03-23 10:22:01 -07:00
|
|
|
pyxeoma==1.4.0
|
2018-01-25 14:48:38 -08:00
|
|
|
|
2017-01-17 18:41:37 +10:00
|
|
|
# homeassistant.components.zabbix
|
|
|
|
pyzabbix==0.7.4
|
|
|
|
|
2017-02-02 15:29:04 -05:00
|
|
|
# homeassistant.components.sensor.qnap
|
2018-04-28 05:39:45 -05:00
|
|
|
qnapstats==0.2.6
|
2017-02-02 15:29:04 -05:00
|
|
|
|
2018-07-01 10:54:51 -05:00
|
|
|
# homeassistant.components.rachio
|
|
|
|
rachiopy==0.1.3
|
2017-06-22 14:34:00 +03:00
|
|
|
|
2016-08-19 09:17:28 +02:00
|
|
|
# homeassistant.components.climate.radiotherm
|
2017-06-23 05:08:23 -04:00
|
|
|
radiotherm==1.3
|
2015-12-27 12:32:08 +01:00
|
|
|
|
2017-09-29 04:08:41 -04:00
|
|
|
# homeassistant.components.raincloud
|
2018-06-16 06:58:18 -04:00
|
|
|
raincloudy==0.0.5
|
2017-09-29 04:08:41 -04:00
|
|
|
|
2017-05-05 10:02:47 +03: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 08:05:24 +02:00
|
|
|
# raspihats==2.2.3
|
2017-05-05 10:02:47 +03:00
|
|
|
|
2018-04-28 07:46:58 -06:00
|
|
|
# homeassistant.components.rainmachine
|
2018-06-10 02:23:07 -06:00
|
|
|
regenmaschine==1.0.2
|
2017-08-08 01:49:25 -06:00
|
|
|
|
2017-06-09 03:38:40 -07:00
|
|
|
# homeassistant.components.python_script
|
2018-05-19 10:05:02 +02:00
|
|
|
restrictedpython==4.0b4
|
2017-06-09 03:38:40 -07:00
|
|
|
|
2017-01-31 17:11:52 +01:00
|
|
|
# homeassistant.components.rflink
|
2018-03-30 04:45:25 +02:00
|
|
|
rflink==0.0.37
|
2017-01-31 17:11:52 +01:00
|
|
|
|
2017-03-31 11:53:56 -04:00
|
|
|
# homeassistant.components.ring
|
2018-06-16 02:58:39 -04:00
|
|
|
ring_doorbell==0.2.1
|
2017-03-05 03:03:00 -05:00
|
|
|
|
2017-10-09 20:38:48 +13:00
|
|
|
# homeassistant.components.notify.rocketchat
|
|
|
|
rocketchat-API==0.6.1
|
|
|
|
|
2017-08-06 11:08:45 +02:00
|
|
|
# homeassistant.components.vacuum.roomba
|
2017-08-11 11:22:22 +02:00
|
|
|
roombapy==1.3.1
|
2017-08-06 11:08:45 +02:00
|
|
|
|
2016-04-26 11:35:01 +02:00
|
|
|
# homeassistant.components.switch.rpi_rf
|
2017-01-29 02:05:24 +01:00
|
|
|
# rpi-rf==0.9.6
|
2016-04-26 11:35:01 +02:00
|
|
|
|
2017-05-07 03:22:38 +03:00
|
|
|
# homeassistant.components.media_player.russound_rnet
|
2017-10-21 14:56:37 -04:00
|
|
|
russound==0.1.9
|
2017-05-07 03:22:38 +03:00
|
|
|
|
2017-07-31 05:42:55 -07:00
|
|
|
# homeassistant.components.media_player.russound_rio
|
2017-09-15 02:40:40 -07:00
|
|
|
russound_rio==0.1.4
|
2017-07-31 05:42:55 -07:00
|
|
|
|
2016-03-23 16:29:21 -06:00
|
|
|
# homeassistant.components.media_player.yamaha
|
2017-10-09 11:58:53 -04:00
|
|
|
rxv==0.5.1
|
2016-03-23 16:29:21 -06:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.media_player.samsungtv
|
2018-02-28 01:37:12 -05:00
|
|
|
samsungctl[websocket]==0.7.1
|
2015-12-16 15:22:38 -05:00
|
|
|
|
2017-09-18 17:42:31 +02:00
|
|
|
# homeassistant.components.satel_integra
|
|
|
|
satel_integra==0.1.0
|
|
|
|
|
2016-02-21 12:18:18 +01:00
|
|
|
# homeassistant.components.sensor.deutsche_bahn
|
2018-03-12 22:02:36 +01:00
|
|
|
schiene==0.22
|
2016-02-21 12:18:18 +01:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.scsgate
|
|
|
|
scsgate==0.1.0
|
2015-11-10 09:40:23 +01:00
|
|
|
|
2016-02-27 14:44:39 -07:00
|
|
|
# homeassistant.components.notify.sendgrid
|
2018-06-27 12:12:02 +02:00
|
|
|
sendgrid==5.4.1
|
2016-02-27 14:44:39 -07:00
|
|
|
|
2017-04-30 05:34:31 +01:00
|
|
|
# homeassistant.components.light.sensehat
|
2016-12-12 00:46:55 +01:00
|
|
|
# homeassistant.components.sensor.sensehat
|
|
|
|
sense-hat==2.2.0
|
|
|
|
|
2018-02-28 17:29:24 -05:00
|
|
|
# homeassistant.components.sensor.sense
|
|
|
|
sense_energy==0.3.1
|
|
|
|
|
2016-12-04 01:09:49 -05:00
|
|
|
# homeassistant.components.media_player.aquostv
|
2017-01-03 17:38:21 -05:00
|
|
|
sharp_aquos_rc==0.3.2
|
2016-12-04 01:09:49 -05:00
|
|
|
|
2017-08-10 17:27:49 +02:00
|
|
|
# homeassistant.components.sensor.shodan
|
2018-06-02 14:34:47 +02:00
|
|
|
shodan==1.8.1
|
2017-08-10 17:27:49 +02:00
|
|
|
|
2018-05-31 17:58:03 -04:00
|
|
|
# homeassistant.components.notify.simplepush
|
|
|
|
simplepush==1.1.4
|
|
|
|
|
2017-02-18 20:47:52 -05:00
|
|
|
# homeassistant.components.alarm_control_panel.simplisafe
|
2018-07-19 13:13:46 -04:00
|
|
|
simplisafe-python==2.0.2
|
2017-02-18 20:47:52 -05:00
|
|
|
|
2018-07-28 22:34:43 -07:00
|
|
|
# homeassistant.components.sisyphus
|
|
|
|
sisyphus-control==2.1
|
|
|
|
|
2017-10-08 11:14:39 -07:00
|
|
|
# homeassistant.components.skybell
|
2018-04-18 01:10:32 -07:00
|
|
|
skybellpy==0.1.2
|
2017-10-08 11:14:39 -07:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.notify.slack
|
2018-03-28 08:27:56 +02:00
|
|
|
slacker==0.9.65
|
2016-01-12 21:15:14 -05:00
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.notify.xmpp
|
2017-03-24 21:44:04 +01:00
|
|
|
sleekxmpp==1.3.2
|
2016-01-31 23:52:42 -08:00
|
|
|
|
2016-09-14 00:11:50 +02:00
|
|
|
# homeassistant.components.sleepiq
|
|
|
|
sleepyq==0.6
|
|
|
|
|
2018-02-18 23:34:28 +01:00
|
|
|
# homeassistant.components.smappee
|
2018-07-24 10:41:24 +02:00
|
|
|
smappy==0.2.16
|
2018-02-18 23:34:28 +01: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 08:05:24 +02:00
|
|
|
# homeassistant.components.raspihats
|
2017-06-22 07:09:08 +02:00
|
|
|
# homeassistant.components.sensor.bh1750
|
2017-06-21 17:24:39 +02:00
|
|
|
# homeassistant.components.sensor.bme280
|
2018-01-23 15:51:52 +08:00
|
|
|
# homeassistant.components.sensor.bme680
|
2017-05-05 19:37:54 +01:00
|
|
|
# homeassistant.components.sensor.envirophat
|
2017-06-22 07:05:58 +02:00
|
|
|
# homeassistant.components.sensor.htu21d
|
2017-05-13 05:06:28 +02:00
|
|
|
# smbus-cffi==0.5.1
|
2017-05-05 19:37:54 +01:00
|
|
|
|
2016-02-09 18:29:28 -05:00
|
|
|
# homeassistant.components.media_player.snapcast
|
2017-11-17 02:32:26 +01:00
|
|
|
snapcast==2.0.8
|
2016-02-09 18:29:28 -05:00
|
|
|
|
2018-05-01 16:27:20 -04:00
|
|
|
# homeassistant.components.sensor.socialblade
|
|
|
|
socialbladeclient==0.2
|
|
|
|
|
2016-08-19 09:17:28 +02:00
|
|
|
# homeassistant.components.climate.honeywell
|
2018-04-16 23:24:20 -04:00
|
|
|
somecomfort==0.5.2
|
2016-02-13 22:00:47 +00:00
|
|
|
|
2016-02-04 18:21:37 -05:00
|
|
|
# homeassistant.components.sensor.speedtest
|
2018-05-26 17:35:16 +02:00
|
|
|
speedtest-cli==2.0.2
|
2018-07-25 11:51:48 +02:00
|
|
|
|
|
|
|
# homeassistant.components.spider
|
2018-07-29 19:49:36 +02:00
|
|
|
spiderpy==1.2.0
|
2016-02-04 18:21:37 -05:00
|
|
|
|
2018-02-22 02:47:15 -05:00
|
|
|
# homeassistant.components.sensor.spotcrime
|
2018-03-14 03:01:10 -04:00
|
|
|
spotcrime==1.0.3
|
2018-02-22 02:47:15 -05:00
|
|
|
|
2018-06-16 22:52:23 +03:00
|
|
|
# homeassistant.components.media_player.spotify
|
|
|
|
spotipy-homeassistant==2.4.4.dev1
|
|
|
|
|
2016-07-02 14:22:51 -04:00
|
|
|
# homeassistant.components.recorder
|
2016-08-23 06:42:05 +02:00
|
|
|
# homeassistant.scripts.db_migrator
|
2018-02-08 07:32:39 +00:00
|
|
|
# homeassistant.components.sensor.sql
|
2018-07-29 23:35:47 +02:00
|
|
|
sqlalchemy==1.2.10
|
2016-07-02 14:22:51 -04:00
|
|
|
|
2016-07-03 17:21:18 -05: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-07-03 13:43:24 +03:00
|
|
|
# homeassistant.components.camera.onvif
|
|
|
|
suds-passworddigest-homeassistant==0.1.2a0.dev0
|
|
|
|
|
2017-06-16 06:28:17 +01:00
|
|
|
# homeassistant.components.camera.onvif
|
|
|
|
suds-py3==1.3.3.0
|
|
|
|
|
2017-11-19 21:35:13 +01:00
|
|
|
# homeassistant.components.tahoma
|
2018-02-26 22:27:20 +01:00
|
|
|
tahoma-api==0.0.13
|
2017-11-19 21:35:13 +01:00
|
|
|
|
2017-08-30 16:21:54 -04:00
|
|
|
# homeassistant.components.sensor.tank_utility
|
|
|
|
tank_utility==1.4.0
|
|
|
|
|
2017-06-04 12:35:19 +01:00
|
|
|
# homeassistant.components.binary_sensor.tapsaff
|
2018-04-28 23:16:34 +02:00
|
|
|
tapsaff==0.2.0
|
2017-06-04 12:35:19 +01:00
|
|
|
|
2017-11-03 20:31:48 +01:00
|
|
|
# homeassistant.components.tellstick
|
2017-12-11 18:32:48 +01:00
|
|
|
tellcore-net==0.4
|
2017-11-03 20:31:48 +01:00
|
|
|
|
2016-03-11 21:54:43 +01:00
|
|
|
# homeassistant.components.tellstick
|
2016-01-31 23:52:42 -08:00
|
|
|
tellcore-py==1.1.2
|
|
|
|
|
|
|
|
# homeassistant.components.tellduslive
|
2017-12-04 17:26:07 +01:00
|
|
|
tellduslive==0.10.4
|
2016-01-31 23:52:42 -08:00
|
|
|
|
2016-09-04 18:37:10 +02:00
|
|
|
# homeassistant.components.sensor.temper
|
2017-05-04 07:46:43 +02:00
|
|
|
temperusb==1.5.3
|
2016-09-04 18:37:10 +02:00
|
|
|
|
2017-08-31 07:13:02 +03:00
|
|
|
# homeassistant.components.tesla
|
2018-02-08 10:34:26 +03:00
|
|
|
teslajsonpy==0.0.23
|
2017-08-31 07:13:02 +03:00
|
|
|
|
2016-10-27 08:56:51 +02:00
|
|
|
# homeassistant.components.thingspeak
|
2017-02-13 11:25:28 +01:00
|
|
|
thingspeak==0.4.1
|
2016-10-27 08:56:51 +02:00
|
|
|
|
2017-01-04 13:31:31 -08:00
|
|
|
# homeassistant.components.light.tikteck
|
|
|
|
tikteck==0.4
|
|
|
|
|
2017-09-13 22:27:12 -07:00
|
|
|
# homeassistant.components.calendar.todoist
|
|
|
|
todoist-python==7.0.17
|
|
|
|
|
2017-10-19 17:59:57 +02:00
|
|
|
# homeassistant.components.toon
|
|
|
|
toonlib==1.0.2
|
|
|
|
|
2017-04-04 05:21:53 -05:00
|
|
|
# homeassistant.components.alarm_control_panel.totalconnect
|
2018-06-03 06:55:49 -05:00
|
|
|
total_connect_client==0.18
|
2017-04-04 05:21:53 -05:00
|
|
|
|
2018-07-17 22:47:32 +02:00
|
|
|
# homeassistant.components.device_tracker.tplink
|
|
|
|
tplink==0.2.1
|
|
|
|
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.sensor.transmission
|
|
|
|
# homeassistant.components.switch.transmission
|
|
|
|
transmissionrpc==0.11
|
2015-11-17 19:14:29 -05:00
|
|
|
|
2018-07-12 16:19:35 +08:00
|
|
|
# homeassistant.components.tuya
|
2018-07-15 08:48:32 +08:00
|
|
|
tuyapy==0.1.2
|
2018-07-12 16:19:35 +08:00
|
|
|
|
2017-03-03 02:14:51 -05:00
|
|
|
# homeassistant.components.twilio
|
2017-01-28 12:45:32 -08:00
|
|
|
twilio==5.7.0
|
2016-05-14 14:09:28 -07:00
|
|
|
|
2016-03-29 18:44:36 -07:00
|
|
|
# homeassistant.components.sensor.uber
|
2017-09-17 13:40:58 +02:00
|
|
|
uber_rides==0.6.0
|
2016-03-29 18:44:36 -07:00
|
|
|
|
2018-02-28 23:17:12 +02:00
|
|
|
# homeassistant.components.upcloud
|
|
|
|
upcloud-api==0.4.2
|
|
|
|
|
2017-02-12 15:47:12 -05:00
|
|
|
# homeassistant.components.sensor.ups
|
2017-06-17 12:42:12 -04:00
|
|
|
upsmychoice==1.0.6
|
2017-02-12 15:47:12 -05:00
|
|
|
|
2018-04-13 21:54:23 -04:00
|
|
|
# homeassistant.components.sensor.uscis
|
|
|
|
uscisstatus==0.1.1
|
|
|
|
|
2016-02-06 01:24:44 +00:00
|
|
|
# homeassistant.components.camera.uvc
|
2017-09-14 00:21:58 -05:00
|
|
|
uvcclient==0.10.1
|
2016-02-06 01:24:44 +00:00
|
|
|
|
2018-01-25 11:34:53 -06:00
|
|
|
# homeassistant.components.climate.venstar
|
2018-01-29 05:35:13 -06:00
|
|
|
venstarcolortouch==0.6
|
2018-01-25 11:34:53 -06:00
|
|
|
|
2018-02-16 14:07:38 -08:00
|
|
|
# homeassistant.components.config.config_entries
|
2018-02-19 22:12:39 -08:00
|
|
|
voluptuous-serialize==1
|
2018-02-16 14:07:38 -08:00
|
|
|
|
2017-02-19 02:09:25 +01:00
|
|
|
# homeassistant.components.volvooncall
|
2017-11-11 21:21:25 +01:00
|
|
|
volvooncall==0.4.0
|
2016-11-02 06:01:00 +01:00
|
|
|
|
2015-11-17 00:18:42 -08:00
|
|
|
# homeassistant.components.verisure
|
2017-07-04 06:26:55 +02:00
|
|
|
vsure==1.3.7
|
2015-11-10 09:40:23 +01:00
|
|
|
|
2016-10-05 07:37:45 +02:00
|
|
|
# homeassistant.components.sensor.vasttrafik
|
2017-02-12 20:57:29 +01:00
|
|
|
vtjp==0.1.14
|
2016-10-05 07:37:45 +02:00
|
|
|
|
2017-11-05 13:10:14 +00:00
|
|
|
# homeassistant.components.vultr
|
|
|
|
vultr==0.1.2
|
|
|
|
|
2017-07-11 03:37:51 +02:00
|
|
|
# homeassistant.components.wake_on_lan
|
2016-12-16 10:16:46 -06:00
|
|
|
# homeassistant.components.media_player.panasonic_viera
|
2017-02-22 01:57:29 +10:00
|
|
|
# homeassistant.components.media_player.samsungtv
|
2016-03-18 15:01:53 +01:00
|
|
|
# homeassistant.components.switch.wake_on_lan
|
2018-02-06 01:04:31 +01:00
|
|
|
wakeonlan==1.0.0
|
2016-03-18 15:01:53 +01:00
|
|
|
|
2017-07-07 17:55:58 +03:00
|
|
|
# homeassistant.components.sensor.waqi
|
|
|
|
waqiasync==1.0.0
|
|
|
|
|
2017-09-12 09:47:04 -07:00
|
|
|
# homeassistant.components.cloud
|
2017-12-12 21:12:41 -08:00
|
|
|
warrant==0.6.1
|
2017-09-12 09:47:04 -07:00
|
|
|
|
2018-03-30 02:10:20 +01:00
|
|
|
# homeassistant.components.folder_watcher
|
|
|
|
watchdog==0.8.3
|
|
|
|
|
2018-01-20 16:51:59 -05:00
|
|
|
# homeassistant.components.waterfurnace
|
2018-02-06 06:12:35 -05:00
|
|
|
waterfurnace==0.4.0
|
2018-01-20 16:51:59 -05:00
|
|
|
|
2016-05-14 21:28:42 +01:00
|
|
|
# homeassistant.components.media_player.gpmdp
|
2016-06-28 08:47:35 +02:00
|
|
|
websocket-client==0.37.0
|
2016-05-14 21:28:42 +01:00
|
|
|
|
2017-06-05 08:53:25 +02:00
|
|
|
# homeassistant.components.spc
|
2016-12-17 01:24:35 -06:00
|
|
|
# homeassistant.components.media_player.webostv
|
|
|
|
websockets==3.2
|
|
|
|
|
2018-06-07 23:30:20 +03:00
|
|
|
# homeassistant.components.wirelesstag
|
|
|
|
wirelesstagpy==0.3.0
|
|
|
|
|
2016-01-24 08:02:14 +00:00
|
|
|
# homeassistant.components.zigbee
|
2016-05-07 02:09:18 +01:00
|
|
|
xbee-helper==0.0.7
|
2016-01-24 08:02:14 +00:00
|
|
|
|
2016-09-04 01:43:33 +02:00
|
|
|
# homeassistant.components.sensor.xbox_live
|
|
|
|
xboxapi==0.1.1
|
|
|
|
|
2017-09-07 09:11:55 +02:00
|
|
|
# homeassistant.components.knx
|
2018-03-11 05:26:21 +01:00
|
|
|
xknx==0.8.5
|
2017-09-07 09:11:55 +02:00
|
|
|
|
2017-08-02 07:41:51 +02:00
|
|
|
# homeassistant.components.media_player.bluesound
|
2018-02-12 22:43:56 -05:00
|
|
|
# homeassistant.components.sensor.startca
|
2016-07-14 03:30:11 +02:00
|
|
|
# homeassistant.components.sensor.swiss_hydrological_data
|
2016-10-04 21:57:40 -07:00
|
|
|
# homeassistant.components.sensor.ted5000
|
2016-01-31 23:52:42 -08:00
|
|
|
# homeassistant.components.sensor.yr
|
2018-03-03 11:41:33 -05:00
|
|
|
# homeassistant.components.sensor.zestimate
|
2017-04-29 23:59:38 +02:00
|
|
|
xmltodict==0.11.0
|
2016-04-06 13:51:26 -07:00
|
|
|
|
2016-09-20 02:38:10 -04:00
|
|
|
# homeassistant.components.sensor.yahoo_finance
|
2016-11-21 17:25:43 +01:00
|
|
|
yahoo-finance==1.4.0
|
2016-09-20 02:38:10 -04:00
|
|
|
|
2016-07-08 17:48:38 +02:00
|
|
|
# homeassistant.components.sensor.yweather
|
2017-06-07 10:49:54 +02:00
|
|
|
# homeassistant.components.weather.yweather
|
2017-12-27 09:19:46 +01:00
|
|
|
yahooweather==0.10
|
2016-07-08 17:48:38 +02: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 10:01:11 +01:00
|
|
|
# homeassistant.components.light.yeelight
|
2018-03-10 18:10:50 +01:00
|
|
|
yeelight==0.4.0
|
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 10:01:11 +01:00
|
|
|
|
2017-02-19 08:05:55 +10:00
|
|
|
# homeassistant.components.light.yeelightsunflower
|
2018-03-27 02:27:53 +10:00
|
|
|
yeelightsunflower==0.0.10
|
2017-02-19 08:05:55 +10:00
|
|
|
|
2017-07-11 11:16:34 +03:00
|
|
|
# homeassistant.components.media_extractor
|
2018-07-29 23:37:10 +02:00
|
|
|
youtube_dl==2018.07.29
|
2017-07-11 11:16:34 +03:00
|
|
|
|
2017-01-13 22:15:43 -08:00
|
|
|
# homeassistant.components.light.zengge
|
|
|
|
zengge==0.2
|
|
|
|
|
2016-04-10 15:34:04 -07:00
|
|
|
# homeassistant.components.zeroconf
|
2018-03-12 22:02:03 +01:00
|
|
|
zeroconf==0.20.0
|
2017-12-05 14:22:27 +01:00
|
|
|
|
2018-06-14 21:47:17 +08:00
|
|
|
# homeassistant.components.climate.zhong_hong
|
|
|
|
zhong_hong_hvac==1.0.9
|
|
|
|
|
2017-12-05 14:22:27 +01:00
|
|
|
# homeassistant.components.media_player.ziggo_mediabox_xl
|
|
|
|
ziggo-mediabox-xl==1.0.0
|
2018-02-05 16:05:19 -08:00
|
|
|
|
2018-02-06 10:46:28 -08:00
|
|
|
# homeassistant.components.zha
|
2018-05-20 21:57:09 -07:00
|
|
|
zigpy-xbee==0.1.1
|
2018-02-06 10:46:28 -08:00
|
|
|
|
2018-02-05 16:05:19 -08:00
|
|
|
# homeassistant.components.zha
|
2018-05-06 02:17:05 -07:00
|
|
|
zigpy==0.1.0
|