2015-11-17 08:18:42 +00:00
|
|
|
# Home Assistant core
|
2017-10-20 02:24:49 +00:00
|
|
|
requests==2.18.4
|
2015-08-30 02:19:52 +00:00
|
|
|
pyyaml>=3.11,<4
|
2017-04-01 10:36:24 +00:00
|
|
|
pytz>=2017.02
|
2017-07-14 02:26:21 +00:00
|
|
|
pip>=8.0.3
|
2017-09-05 15:03:24 +00:00
|
|
|
jinja2>=2.9.6
|
2017-04-30 07:42:19 +00:00
|
|
|
voluptuous==0.10.5
|
2016-07-21 05:38:52 +00:00
|
|
|
typing>=3,<4
|
2017-12-29 09:06:25 +00:00
|
|
|
aiohttp==2.3.7
|
2018-01-13 08:01:05 +00:00
|
|
|
yarl==0.18.0
|
2017-10-18 07:48:00 +00:00
|
|
|
async_timeout==2.0.0
|
2017-07-03 09:49:23 +00:00
|
|
|
chardet==3.0.4
|
2017-05-09 07:03:34 +00:00
|
|
|
astral==1.4
|
2017-10-19 08:47:57 +00:00
|
|
|
certifi>=2017.4.17
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2016-09-15 01:20:49 +00:00
|
|
|
# homeassistant.components.nuimo_controller
|
2017-05-02 16:15:02 +00:00
|
|
|
--only-binary=all https://github.com/getSenic/nuimo-linux-python/archive/29fc42987f74d8090d0e2382e8f248ff5990b8c9.zip#nuimo==1.0.0
|
2016-09-15 01:20:49 +00:00
|
|
|
|
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
|
|
|
|
2017-09-17 18:47:30 +00:00
|
|
|
# homeassistant.components.doorbird
|
2017-12-29 09:05:45 +00:00
|
|
|
DoorBirdPy==0.1.2
|
2017-09-17 18:47:30 +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
|
|
|
|
2016-08-18 05:34:12 +00:00
|
|
|
# homeassistant.components.notify.html5
|
2017-09-10 20:25:46 +00:00
|
|
|
PyJWT==1.5.3
|
2016-08-18 05:34:12 +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
|
|
|
|
2017-09-19 09:36:59 +00:00
|
|
|
# homeassistant.components.xiaomi_aqara
|
2018-01-23 09:22:43 +00:00
|
|
|
PyXiaomiGateway==0.8.0
|
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
|
|
|
|
|
2016-11-11 05:01:42 +00:00
|
|
|
# homeassistant.components.media_player.sonos
|
2017-12-17 12:08:35 +00:00
|
|
|
SoCo==0.13
|
2016-11-11 05:01:42 +00:00
|
|
|
|
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
|
2017-07-18 14:24:32 +00:00
|
|
|
TwitterAPI==2.4.6
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-10-28 23:05:56 +00:00
|
|
|
# homeassistant.components.notify.yessssms
|
|
|
|
YesssSMS==0.1.1b3
|
|
|
|
|
2017-08-20 14:55:48 +00:00
|
|
|
# homeassistant.components.abode
|
2017-11-07 00:39:13 +00:00
|
|
|
abodepy==0.12.2
|
2017-08-20 14:55:48 +00:00
|
|
|
|
2017-04-16 01:11:36 +00:00
|
|
|
# homeassistant.components.device_tracker.automatic
|
2017-10-22 21:11:35 +00:00
|
|
|
aioautomatic==0.6.4
|
2017-04-16 01:11:36 +00:00
|
|
|
|
2017-02-27 10:45:32 +00:00
|
|
|
# homeassistant.components.sensor.dnsip
|
|
|
|
aiodns==1.1.1
|
|
|
|
|
2017-01-25 05:29:34 +00:00
|
|
|
# homeassistant.components.emulated_hue
|
2016-05-14 07:58:36 +00:00
|
|
|
# homeassistant.components.http
|
2017-12-27 08:17:03 +00:00
|
|
|
aiohttp_cors==0.6.0
|
2016-05-10 01:09:38 +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
|
|
|
|
2017-03-16 05:50:33 +00:00
|
|
|
# homeassistant.components.light.lifx
|
2017-12-08 16:43:37 +00:00
|
|
|
aiolifx==0.6.1
|
2017-06-27 05:05:32 +00:00
|
|
|
|
|
|
|
# homeassistant.components.light.lifx
|
2017-09-19 20:27:00 +00:00
|
|
|
aiolifx_effects==0.1.2
|
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
|
|
|
|
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-01-06 00:05:51 +00:00
|
|
|
alpha_vantage==1.8.0
|
2017-12-03 20:34:59 +00:00
|
|
|
|
2017-07-11 08:10:10 +00:00
|
|
|
# homeassistant.components.amcrest
|
2017-07-24 06:46:23 +00:00
|
|
|
amcrest==1.2.1
|
2016-11-30 21:07:17 +00:00
|
|
|
|
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
|
|
|
|
2017-08-06 18:19:47 +00:00
|
|
|
# homeassistant.components.asterisk_mbox
|
|
|
|
asterisk_mbox==0.4.0
|
|
|
|
|
2017-01-19 20:07:37 +00:00
|
|
|
# homeassistant.components.light.avion
|
2017-07-04 22:39:51 +00:00
|
|
|
# avion==0.7
|
2017-01-19 20:07:37 +00:00
|
|
|
|
2017-05-12 15:51:54 +00:00
|
|
|
# homeassistant.components.axis
|
2017-10-25 07:04:30 +00:00
|
|
|
axis==14
|
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
|
|
|
|
# beacontools[scan]==1.0.1
|
|
|
|
|
2017-01-27 07:27:29 +00:00
|
|
|
# homeassistant.components.device_tracker.linksys_ap
|
2017-08-04 10:11:33 +00:00
|
|
|
# homeassistant.components.sensor.geizhals
|
2016-10-16 23:06:07 +00:00
|
|
|
# homeassistant.components.sensor.scrape
|
2017-10-28 23:34:55 +00:00
|
|
|
# homeassistant.components.sensor.sytadin
|
2017-05-08 17:39:40 +00:00
|
|
|
beautifulsoup4==4.6.0
|
2016-10-16 23:06:07 +00:00
|
|
|
|
2017-04-25 05:24:57 +00:00
|
|
|
# homeassistant.components.zha
|
2017-10-16 04:41:16 +00:00
|
|
|
bellows==0.4.0
|
2017-04-25 05:24:57 +00:00
|
|
|
|
2017-03-07 22:26:53 +00:00
|
|
|
# homeassistant.components.blink
|
2017-05-13 03:30:07 +00:00
|
|
|
blinkpy==0.6.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
|
2017-09-19 08:04:11 +00:00
|
|
|
blockchain==1.4.0
|
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
|
|
|
|
|
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
|
2017-10-29 09:24:56 +00:00
|
|
|
boto3==1.4.7
|
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
|
|
|
|
2016-12-16 05:42:00 +00:00
|
|
|
# homeassistant.components.sensor.broadlink
|
|
|
|
# homeassistant.components.switch.broadlink
|
2017-07-13 12:42:30 +00:00
|
|
|
broadlink==0.5
|
2016-12-16 05:42:00 +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
|
2017-08-16 06:07:04 +00:00
|
|
|
buienradar==0.9
|
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-01-10 06:47:22 +00:00
|
|
|
# homeassistant.components.coinbase
|
|
|
|
coinbase==2.0.6
|
|
|
|
|
2016-09-02 14:59:05 +00:00
|
|
|
# homeassistant.components.sensor.coinmarketcap
|
2018-01-14 21:31:47 +00:00
|
|
|
coinmarketcap==4.1.2
|
2016-09-02 14:59:05 +00:00
|
|
|
|
2016-08-23 04:42:05 +00:00
|
|
|
# homeassistant.scripts.check_config
|
2017-08-08 08:16:04 +00:00
|
|
|
colorlog==3.0.1
|
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
|
|
|
|
2017-07-24 15:59:10 +00:00
|
|
|
# homeassistant.scripts.credstash
|
2017-11-03 12:51:17 +00:00
|
|
|
# credstash==1.14.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
|
|
|
|
deluge-client==1.0.5
|
|
|
|
|
2016-11-28 06:13:22 +00:00
|
|
|
# homeassistant.components.media_player.denonavr
|
2017-12-03 20:51:32 +00:00
|
|
|
denonavr==0.5.5
|
2016-11-28 06:13:22 +00:00
|
|
|
|
2016-07-26 06:20:56 +00:00
|
|
|
# homeassistant.components.media_player.directv
|
2017-10-18 17:04:01 +00:00
|
|
|
directpy==0.2
|
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
|
2017-12-27 08:20:08 +00:00
|
|
|
distro==1.2.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
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.notify.xmpp
|
2016-10-11 06:24:10 +00:00
|
|
|
dnspython3==1.15.0
|
2016-01-19 13:10:17 +00:00
|
|
|
|
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
|
2017-09-25 20:19:44 +00:00
|
|
|
dsmr_parser==0.11
|
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
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.sensor.eliqonline
|
2016-12-17 20:14:04 +00:00
|
|
|
eliqonline==1.0.13
|
2015-08-30 02:19:52 +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
|
|
|
|
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
|
|
|
|
2017-08-29 14:18:37 +00:00
|
|
|
# homeassistant.components.sensor.season
|
|
|
|
ephem==3.7.6.0
|
|
|
|
|
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
|
|
|
|
2016-08-19 07:17:28 +00:00
|
|
|
# homeassistant.components.climate.honeywell
|
2016-04-23 16:03:43 +00:00
|
|
|
evohomeclient==0.2.5
|
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
|
2017-08-23 05:14:06 +00:00
|
|
|
fedexdeliverymanager==1.0.4
|
2017-02-12 20:47:27 +00:00
|
|
|
|
2016-04-19 15:14:36 +00:00
|
|
|
# homeassistant.components.feedreader
|
2017-09-24 06:12:38 +00:00
|
|
|
# homeassistant.components.sensor.geo_rss_events
|
2016-04-19 15:14:36 +00:00
|
|
|
feedparser==5.2.1
|
|
|
|
|
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
|
|
|
|
fixerio==0.1.1
|
|
|
|
|
2017-01-11 05:45:46 +00:00
|
|
|
# homeassistant.components.light.flux_led
|
2018-01-19 08:44:40 +00:00
|
|
|
flux_led==0.21
|
2017-01-11 05:45:46 +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
|
|
|
|
2017-02-28 14:23:07 +00:00
|
|
|
# homeassistant.components.media_player.frontier_silicon
|
|
|
|
fsapi==0.0.7
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.conversation
|
2017-12-29 09:06:39 +00:00
|
|
|
fuzzywuzzy==0.16.0
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2016-12-13 07:23:08 +00:00
|
|
|
# homeassistant.components.tts.google
|
|
|
|
gTTS-token==1.1.1
|
|
|
|
|
2016-08-18 06:41:05 +00:00
|
|
|
# homeassistant.components.device_tracker.bluetooth_le_tracker
|
|
|
|
# gattlib==0.20150805
|
|
|
|
|
2017-12-05 11:32:43 +00:00
|
|
|
# homeassistant.components.sensor.gearbest
|
|
|
|
gearbest_parser==1.0.5
|
|
|
|
|
2017-06-12 04:40:06 +00:00
|
|
|
# homeassistant.components.sensor.gitter
|
2017-10-20 18:28:34 +00:00
|
|
|
gitterpy==0.1.6
|
2017-06-12 04:40:06 +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
|
|
|
|
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
|
2017-04-08 21:53:16 +00:00
|
|
|
gstreamer-player==1.1.0
|
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
|
|
|
|
ha-philipsjs==0.0.1
|
|
|
|
|
2017-09-24 06:12:38 +00:00
|
|
|
# homeassistant.components.sensor.geo_rss_events
|
|
|
|
haversine==0.4.5
|
|
|
|
|
2016-03-08 00:45:37 +00:00
|
|
|
# homeassistant.components.mqtt.server
|
2017-11-16 15:47:37 +00:00
|
|
|
hbmqtt==0.9.1
|
2016-03-08 00:45:37 +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
|
|
|
|
|
2017-03-16 06:46:13 +00:00
|
|
|
# homeassistant.components.binary_sensor.workday
|
2018-01-20 16:09:05 +00:00
|
|
|
holidays==0.9.3
|
2017-03-16 06:46:13 +00:00
|
|
|
|
2017-10-25 02:36:27 +00:00
|
|
|
# homeassistant.components.frontend
|
2018-01-26 07:26:02 +00:00
|
|
|
home-assistant-frontend==20180126.0
|
2017-10-25 02:36:27 +00:00
|
|
|
|
2017-06-16 05:28:17 +00:00
|
|
|
# homeassistant.components.camera.onvif
|
|
|
|
http://github.com/tgaugry/suds-passworddigest-py3/archive/86fc50e39b4d2b8997481967d6a7fe1c57118999.zip#suds-passworddigest-py3==0.1.2a
|
|
|
|
|
2017-11-01 03:33:47 +00:00
|
|
|
# homeassistant.components.remember_the_milk
|
|
|
|
httplib2==0.10.3
|
|
|
|
|
2017-05-02 16:15:02 +00:00
|
|
|
# homeassistant.components.sensor.dht
|
2017-07-20 13:53:06 +00:00
|
|
|
# https://github.com/adafruit/Adafruit_Python_DHT/archive/da8cddf7fb629c1ef4f046ca44f42523c9cf2d11.zip#Adafruit_DHT==1.3.2
|
2016-04-10 23:59:53 +00:00
|
|
|
|
2016-06-20 05:35:26 +00:00
|
|
|
# homeassistant.components.media_player.braviatv
|
2017-04-13 01:22:23 +00:00
|
|
|
https://github.com/aparraga/braviarc/archive/0.3.7.zip#braviarc==0.3.7
|
2016-06-20 05:35:26 +00:00
|
|
|
|
2017-04-20 05:45:12 +00:00
|
|
|
# homeassistant.components.media_player.spotify
|
|
|
|
https://github.com/happyleavesaoc/spotipy/archive/544614f4b1d508201d363e84e871f86c90aa26b2.zip#spotipy==2.4.4
|
|
|
|
|
2016-06-10 06:31:36 +00:00
|
|
|
# homeassistant.components.netatmo
|
2017-11-18 22:36:01 +00:00
|
|
|
https://github.com/jabesq/netatmo-api-python/archive/v0.9.2.1.zip#lnetatmo==0.9.2.1
|
2016-06-10 06:31:36 +00:00
|
|
|
|
2016-11-19 08:14:40 +00:00
|
|
|
# homeassistant.components.neato
|
2018-01-18 22:37:24 +00:00
|
|
|
https://github.com/jabesq/pybotvac/archive/v0.0.5.zip#pybotvac==0.0.5
|
2016-10-22 04:14:45 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.sensor.sabnzbd
|
|
|
|
https://github.com/jamespcole/home-assistant-nzb-clients/archive/616cad59154092599278661af17e2a9f2cf5e2a9.zip#python-sabnzbd==0.1
|
2016-01-31 09:06:39 +00:00
|
|
|
|
2016-10-02 23:51:15 +00:00
|
|
|
# homeassistant.components.switch.anel_pwrctrl
|
2016-10-07 18:38:39 +00:00
|
|
|
https://github.com/mweinelt/anel-pwrctrl/archive/ed26e8830e28a2bfa4260a9002db23ce3e7e63d7.zip#anel_pwrctrl==0.0.1
|
2016-10-02 23:51:15 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.switch.edimax
|
|
|
|
https://github.com/rkabadi/pyedimax/archive/365301ce3ff26129a7910c501ead09ea625f3700.zip#pyedimax==0.1
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2016-03-27 01:25:49 +00:00
|
|
|
# homeassistant.components.sensor.gtfs
|
2016-05-21 18:04:18 +00:00
|
|
|
https://github.com/robbiet480/pygtfs/archive/00546724e4bbcb3053110d844ca44e2246267dd8.zip#pygtfs==0.1.3
|
2016-03-27 01:25:49 +00:00
|
|
|
|
2016-12-06 05:12:24 +00:00
|
|
|
# homeassistant.components.binary_sensor.flic
|
|
|
|
https://github.com/soldag/pyflic/archive/0.4.zip#pyflic==0.4
|
|
|
|
|
2016-05-20 06:27:47 +00:00
|
|
|
# homeassistant.components.media_player.lg_netcast
|
|
|
|
https://github.com/wokar/pylgnetcast/archive/v0.2.0.zip#pylgnetcast==0.2.0
|
|
|
|
|
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-01-06 20:52:31 +00:00
|
|
|
# homeassistant.components.light.iglo
|
2018-01-13 19:07:39 +00:00
|
|
|
iglo==1.1.3
|
2018-01-06 20:52:31 +00:00
|
|
|
|
2018-01-20 15:29:50 +00:00
|
|
|
# homeassistant.components.ihc
|
|
|
|
ihcsdk==2.1.1
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.influxdb
|
2016-10-27 06:48:57 +00:00
|
|
|
# homeassistant.components.sensor.influxdb
|
2017-10-02 15:17:08 +00:00
|
|
|
influxdb==4.1.1
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-01-08 23:33:35 +00:00
|
|
|
# homeassistant.components.insteon_local
|
2018-01-08 17:18:10 +00:00
|
|
|
insteonlocal==0.53
|
2017-01-08 23:33:35 +00:00
|
|
|
|
2017-02-21 07:53:39 +00:00
|
|
|
# homeassistant.components.insteon_plm
|
2017-07-31 12:33:51 +00:00
|
|
|
insteonplm==0.7.5
|
2017-02-21 07:53:39 +00:00
|
|
|
|
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
|
2017-04-06 22:12:24 +00:00
|
|
|
jsonrpc-websocket==0.5
|
2017-02-18 08:26:07 +00:00
|
|
|
|
2016-08-23 04:42:05 +00:00
|
|
|
# homeassistant.scripts.keyring
|
2018-01-13 08:02:25 +00:00
|
|
|
keyring==10.6.0
|
2018-01-10 03:51:35 +00:00
|
|
|
|
|
|
|
# homeassistant.scripts.keyring
|
|
|
|
keyrings.alt==2.3
|
2016-08-23 04:42:05 +00:00
|
|
|
|
2016-10-04 07:57:37 +00:00
|
|
|
# homeassistant.components.device_tracker.owntracks
|
2017-09-28 07:49:35 +00:00
|
|
|
# homeassistant.components.device_tracker.owntracks_http
|
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
|
2017-10-16 19:46:21 +00:00
|
|
|
librouteros==1.0.4
|
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
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.light.limitlessled
|
2017-05-17 16:05:34 +00:00
|
|
|
limitlessled==1.0.8
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-10-27 14:19:47 +00:00
|
|
|
# homeassistant.components.linode
|
|
|
|
linode-api==4.1.4b2
|
|
|
|
|
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
|
|
|
|
|
2017-12-12 07:09:47 +00:00
|
|
|
# homeassistant.components.sensor.luftdaten
|
2017-12-27 08:19:02 +00:00
|
|
|
luftdaten==0.1.3
|
2017-12-12 07:09:47 +00:00
|
|
|
|
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
|
|
|
|
2016-10-18 19:13:00 +00:00
|
|
|
# homeassistant.components.notify.matrix
|
2017-03-27 08:35:40 +00:00
|
|
|
matrix-client==0.0.6
|
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
|
|
|
|
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
|
2017-12-20 10:35:03 +00:00
|
|
|
miflora==0.2.0
|
2016-09-14 05:37:57 +00:00
|
|
|
|
2017-06-19 04:32:39 +00:00
|
|
|
# homeassistant.components.upnp
|
2017-09-24 20:08:58 +00:00
|
|
|
miniupnpc==2.0.2
|
2017-06-19 04:32:39 +00:00
|
|
|
|
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
|
2017-11-29 10:04:28 +00:00
|
|
|
mutagen==1.39
|
2017-02-07 11:07:11 +00:00
|
|
|
|
2018-01-15 20:50:56 +00:00
|
|
|
# homeassistant.components.mychevy
|
|
|
|
mychevy==0.1.1
|
|
|
|
|
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
|
2017-09-24 06:28:11 +00:00
|
|
|
myusps==1.2.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
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.discovery
|
2018-01-18 11:51:01 +00:00
|
|
|
netdisco==1.2.4
|
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
|
|
|
|
2017-10-27 20:19:12 +00:00
|
|
|
# homeassistant.components.sensor.nederlandse_spoorwegen
|
|
|
|
nsapi==2.7.4
|
|
|
|
|
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-01-09 14:30:00 +00:00
|
|
|
numpy==1.14.0
|
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
|
2017-10-15 17:12:43 +00:00
|
|
|
paho-mqtt==1.3.1
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2016-04-06 05:51:55 +00:00
|
|
|
# homeassistant.components.media_player.panasonic_viera
|
|
|
|
panasonic_viera==0.2
|
|
|
|
|
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-05-15 19:20:17 +00:00
|
|
|
# homeassistant.components.device_tracker.asuswrt
|
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
|
2016-02-02 21:49:11 +00:00
|
|
|
pexpect==4.0.1
|
|
|
|
|
2017-12-10 18:15:01 +00:00
|
|
|
# homeassistant.components.hue
|
2017-07-11 19:21:17 +00:00
|
|
|
phue==1.0
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-05-10 05:36:33 +00: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 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
|
|
|
|
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-01-03 18:28:43 +00:00
|
|
|
plexapi==3.0.5
|
2016-01-15 17:28:32 +00:00
|
|
|
|
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
|
|
|
|
|
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-01-08 16:11:45 +00:00
|
|
|
prometheus_client==0.1.0
|
2017-07-11 04:20:17 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.sensor.systemmonitor
|
2018-01-05 22:30:12 +00:00
|
|
|
psutil==5.4.3
|
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
|
2017-08-19 11:23:46 +00:00
|
|
|
pwmled==1.2.1
|
2017-04-20 06:32:20 +00:00
|
|
|
|
2017-12-08 09:40:45 +00:00
|
|
|
# homeassistant.components.canary
|
|
|
|
py-canary==0.2.3
|
|
|
|
|
2015-11-17 08:18:42 +00:00
|
|
|
# homeassistant.components.sensor.cpuspeed
|
2017-06-11 10:03:02 +00:00
|
|
|
py-cpuinfo==3.3.0
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2017-09-29 10:02:48 +00:00
|
|
|
# homeassistant.components.camera.synology
|
2017-10-18 07:58:49 +00:00
|
|
|
py-synology==0.1.5
|
2017-09-29 10:02:48 +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
|
2017-10-08 14:31:32 +00:00
|
|
|
pyHS100==0.3.0
|
2017-01-14 06:20:47 +00:00
|
|
|
|
2016-03-14 07:25:04 +00:00
|
|
|
# homeassistant.components.rfxtrx
|
2018-01-12 19:52:53 +00:00
|
|
|
pyRFXtrx==0.21.1
|
2016-03-14 07:25:04 +00:00
|
|
|
|
2017-10-04 08:31:42 +00:00
|
|
|
# homeassistant.components.sensor.tibber
|
2017-11-08 10:18:35 +00:00
|
|
|
pyTibber==0.2.1
|
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
|
|
|
|
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
|
2017-09-24 19:25:18 +00:00
|
|
|
pyairvisual==1.0.0
|
2017-09-08 14:05:51 +00:00
|
|
|
|
2017-03-29 06:21:40 +00:00
|
|
|
# homeassistant.components.alarm_control_panel.alarmdotcom
|
2017-04-10 14:13:07 +00:00
|
|
|
pyalarmdotcom==0.3.0
|
2017-03-29 06:21:40 +00:00
|
|
|
|
2017-05-31 07:25:25 +00:00
|
|
|
# homeassistant.components.arlo
|
2018-01-13 19:00:04 +00:00
|
|
|
pyarlo==0.1.2
|
2017-05-31 07:25:25 +00:00
|
|
|
|
2016-04-12 04:55:17 +00:00
|
|
|
# homeassistant.components.notify.xmpp
|
2017-10-11 13:26:34 +00:00
|
|
|
pyasn1-modules==0.1.5
|
2016-04-12 04:55:17 +00:00
|
|
|
|
|
|
|
# homeassistant.components.notify.xmpp
|
2017-10-11 13:26:34 +00:00
|
|
|
pyasn1==0.3.7
|
2016-04-12 04:55:17 +00:00
|
|
|
|
2017-07-05 04:37:18 +00:00
|
|
|
# homeassistant.components.apple_tv
|
2017-12-12 15:52:39 +00:00
|
|
|
pyatv==0.3.9
|
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
|
|
|
|
|
2016-04-19 15:18:46 +00:00
|
|
|
# homeassistant.components.device_tracker.bluetooth_tracker
|
|
|
|
# pybluez==0.22
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.media_player.cast
|
2018-01-01 22:52:36 +00:00
|
|
|
pychromecast==1.0.3
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2016-06-25 07:06:36 +00:00
|
|
|
# homeassistant.components.media_player.cmus
|
2016-06-27 16:02:45 +00:00
|
|
|
pycmus==0.1.0
|
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
|
|
|
|
pydaikin==0.4
|
|
|
|
|
2018-01-01 16:08:13 +00:00
|
|
|
# homeassistant.components.deconz
|
2018-01-18 05:22:42 +00:00
|
|
|
pydeconz==25
|
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
|
|
|
|
2017-02-16 08:29:43 +00:00
|
|
|
# homeassistant.components.sensor.ebox
|
|
|
|
pyebox==0.1.0
|
|
|
|
|
2017-12-29 18:05:58 +00:00
|
|
|
# homeassistant.components.climate.econet
|
|
|
|
pyeconet==0.0.4
|
|
|
|
|
2017-05-02 15:38:27 +00:00
|
|
|
# homeassistant.components.eight_sleep
|
2017-06-05 15:44:13 +00:00
|
|
|
pyeight==0.0.7
|
2017-05-02 15:38:27 +00:00
|
|
|
|
2016-10-31 12:29:08 +00:00
|
|
|
# homeassistant.components.media_player.emby
|
2017-07-04 06:02:29 +00:00
|
|
|
pyemby==1.4
|
2016-10-31 12:29:08 +00:00
|
|
|
|
2016-06-19 17:45:07 +00:00
|
|
|
# homeassistant.components.envisalink
|
2017-08-16 10:08:15 +00:00
|
|
|
pyenvisalink==2.2
|
2016-06-19 17:45:07 +00:00
|
|
|
|
2017-10-23 13:52:39 +00:00
|
|
|
# homeassistant.components.climate.ephember
|
|
|
|
pyephember==0.1.1
|
|
|
|
|
2017-02-15 20:21:38 +00:00
|
|
|
# homeassistant.components.sensor.fido
|
2017-12-29 17:33:11 +00:00
|
|
|
pyfido==2.1.0
|
2017-02-15 20:21:38 +00:00
|
|
|
|
2017-06-13 05:06:47 +00:00
|
|
|
# homeassistant.components.climate.flexit
|
|
|
|
pyflexit==0.3
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.ifttt
|
|
|
|
pyfttt==0.3
|
2015-12-16 19:54:25 +00:00
|
|
|
|
2016-12-01 20:48:08 +00:00
|
|
|
# homeassistant.components.remote.harmony
|
2017-11-09 16:57:41 +00:00
|
|
|
pyharmony==1.0.18
|
2016-12-01 20:48:08 +00:00
|
|
|
|
2016-12-13 07:10:16 +00:00
|
|
|
# homeassistant.components.binary_sensor.hikvision
|
2017-09-09 07:06:06 +00:00
|
|
|
pyhik==0.1.4
|
2016-12-13 07:10:16 +00:00
|
|
|
|
2017-11-23 12:10:23 +00:00
|
|
|
# homeassistant.components.hive
|
2018-01-24 00:16:38 +00:00
|
|
|
pyhiveapi==0.2.11
|
2017-11-23 12:10:23 +00:00
|
|
|
|
2016-06-24 08:06:58 +00:00
|
|
|
# homeassistant.components.homematic
|
2018-01-11 19:08:09 +00:00
|
|
|
pyhomematic==0.1.37
|
2016-06-24 08:06:58 +00:00
|
|
|
|
2017-02-16 09:22:21 +00:00
|
|
|
# homeassistant.components.sensor.hydroquebec
|
2018-01-05 09:22:40 +00:00
|
|
|
pyhydroquebec==2.1.0
|
2017-02-16 09:22:21 +00:00
|
|
|
|
2017-12-03 15:48:12 +00:00
|
|
|
# homeassistant.components.alarm_control_panel.ialarm
|
|
|
|
pyialarm==0.2
|
|
|
|
|
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
|
|
|
|
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-01-15 22:25:00 +00:00
|
|
|
pylast==2.1.0
|
2016-05-15 20:11:41 +00:00
|
|
|
|
2017-04-19 23:36:11 +00:00
|
|
|
# homeassistant.components.media_player.webostv
|
|
|
|
# homeassistant.components.notify.webostv
|
2017-04-26 03:20:54 +00:00
|
|
|
pylgtv==0.1.7
|
2017-04-19 23:36:11 +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
|
2017-02-24 22:02:39 +00:00
|
|
|
pyloopenergy==0.0.17
|
2016-03-31 16:00:43 +00:00
|
|
|
|
2017-05-08 00:32:13 +00:00
|
|
|
# homeassistant.components.lutron_caseta
|
2017-11-10 11:17:25 +00:00
|
|
|
pylutron-caseta==0.3.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
|
|
|
|
|
2016-10-25 04:49:49 +00:00
|
|
|
# homeassistant.components.mochad
|
|
|
|
pymochad==0.1.1
|
|
|
|
|
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
|
|
|
|
pymyq==0.0.8
|
|
|
|
|
2017-05-07 00:22:38 +00:00
|
|
|
# homeassistant.components.mysensors
|
2017-08-29 15:10:28 +00:00
|
|
|
pymysensors==0.11.1
|
2017-05-07 00:22:38 +00:00
|
|
|
|
2017-08-14 08:02:37 +00:00
|
|
|
# homeassistant.components.lock.nello
|
2017-09-01 10:02:22 +00:00
|
|
|
pynello==1.5.1
|
2017-08-14 08:02:37 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.device_tracker.netgear
|
2016-04-10 03:29:06 +00:00
|
|
|
pynetgear==0.3.3
|
2015-08-30 02:19:52 +00:00
|
|
|
|
2016-06-10 06:40:14 +00:00
|
|
|
# homeassistant.components.switch.netio
|
|
|
|
pynetio==0.1.6
|
|
|
|
|
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-01-25 18:46:48 +00:00
|
|
|
# homeassistant.components.iota
|
|
|
|
pyota==2.0.3
|
|
|
|
|
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
|
2017-12-29 09:06:52 +00:00
|
|
|
pyowm==2.8.0
|
2015-09-04 15:51:25 +00:00
|
|
|
|
2018-01-26 17:40:02 +00:00
|
|
|
# homeassistant.components.sensor.pollen
|
|
|
|
pypollencom==1.1.1
|
|
|
|
|
2016-12-29 09:08:11 +00:00
|
|
|
# homeassistant.components.qwikswitch
|
|
|
|
pyqwikswitch==0.4
|
|
|
|
|
2017-12-25 09:07:18 +00:00
|
|
|
# homeassistant.components.rainbird
|
|
|
|
pyrainbird==0.1.3
|
2017-10-11 13:56:18 +00:00
|
|
|
|
2017-05-03 00:23:36 +00:00
|
|
|
# homeassistant.components.climate.sensibo
|
2018-01-10 22:04:35 +00:00
|
|
|
pysensibo==1.0.2
|
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
|
|
|
|
2017-01-09 20:35:47 +00:00
|
|
|
# homeassistant.components.sensor.sma
|
|
|
|
pysma==0.1.3
|
|
|
|
|
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-01-06 18:54:15 +00:00
|
|
|
pysnmp==4.4.4
|
2015-09-09 03:11:25 +00:00
|
|
|
|
2017-12-13 09:58:49 +00:00
|
|
|
# homeassistant.components.media_player.liveboxplaytv
|
|
|
|
pyteleloisirs==3.3
|
|
|
|
|
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-01-23 22:03:54 +00:00
|
|
|
python-ecobee-api==0.0.15
|
2017-05-04 05:48:43 +00:00
|
|
|
|
2017-01-14 05:34:35 +00:00
|
|
|
# homeassistant.components.climate.eq3btsmart
|
2018-01-21 10:45:20 +00:00
|
|
|
# python-eq3bt==0.1.8
|
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
|
|
|
|
2016-10-05 19:42:58 +00:00
|
|
|
# homeassistant.components.sensor.darksky
|
2018-01-07 21:59:32 +00:00
|
|
|
# homeassistant.components.weather.darksky
|
2016-10-05 19:42:58 +00:00
|
|
|
python-forecastio==1.3.5
|
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
|
|
|
|
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
|
|
|
|
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
|
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-01-20 20:27:52 +00:00
|
|
|
python-miio==0.3.4
|
2017-07-07 04:44:34 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.media_player.mpd
|
2016-03-24 07:07:06 +00:00
|
|
|
python-mpd2==0.5.5
|
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
|
2017-04-18 16:03:56 +00:00
|
|
|
python-mystrom==0.3.8
|
2016-07-15 16:02:20 +00:00
|
|
|
|
2017-02-07 21:55:49 +00:00
|
|
|
# homeassistant.components.nest
|
|
|
|
python-nest==3.1.0
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
|
2016-11-03 04:17:29 +00:00
|
|
|
# homeassistant.components.sensor.synologydsm
|
|
|
|
python-synology==0.1.0
|
|
|
|
|
2017-07-02 19:54:59 +00:00
|
|
|
# homeassistant.components.tado
|
|
|
|
python-tado==0.2.2
|
|
|
|
|
2017-05-10 04:42:17 +00:00
|
|
|
# homeassistant.components.telegram_bot
|
2017-12-29 09:08:14 +00:00
|
|
|
python-telegram-bot==9.0.0
|
2015-10-07 21:45:24 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.sensor.twitch
|
2016-07-17 20:05:50 +00:00
|
|
|
python-twitch==1.3.0
|
2015-10-09 12:13:05 +00:00
|
|
|
|
2017-07-26 12:03:29 +00:00
|
|
|
# homeassistant.components.velbus
|
|
|
|
python-velbus==2.0.11
|
|
|
|
|
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-01-25 16:31:38 +00:00
|
|
|
python-wink==1.7.3
|
2015-10-15 10:13:35 +00:00
|
|
|
|
2017-09-16 06:13:30 +00:00
|
|
|
# homeassistant.components.sensor.swiss_public_transport
|
2017-10-27 06:01:12 +00:00
|
|
|
python_opendata_transport==0.0.3
|
2017-09-16 06:13:30 +00:00
|
|
|
|
2017-05-05 21:57:14 +00:00
|
|
|
# homeassistant.components.zwave
|
2017-09-23 02:00:35 +00:00
|
|
|
python_openzwave==0.4.0.35
|
2017-05-05 21:57:14 +00:00
|
|
|
|
2017-08-05 20:04:00 +00:00
|
|
|
# homeassistant.components.alarm_control_panel.egardia
|
2018-01-01 01:10:52 +00:00
|
|
|
pythonegardia==1.0.26
|
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
|
2017-12-24 00:19:04 +00:00
|
|
|
pytile==1.1.0
|
2017-11-11 22:21:03 +00:00
|
|
|
|
2018-01-06 10:23:24 +00:00
|
|
|
# homeassistant.components.climate.touchline
|
|
|
|
pytouchline==0.6
|
|
|
|
|
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
|
2017-11-22 09:37:20 +00:00
|
|
|
# pytradfri[async]==4.1.0
|
2017-04-13 17:04:42 +00:00
|
|
|
|
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
|
|
|
|
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
|
2017-12-07 06:47:19 +00:00
|
|
|
pyvera==0.2.39
|
2015-10-15 15:13:02 +00:00
|
|
|
|
2017-07-11 20:55:46 +00:00
|
|
|
# homeassistant.components.media_player.vizio
|
|
|
|
pyvizio==0.0.2
|
|
|
|
|
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-01-07 05:08:11 +00:00
|
|
|
pywebpush==1.5.0
|
2016-11-18 21:03:44 +00:00
|
|
|
|
2016-02-19 06:57:32 +00:00
|
|
|
# homeassistant.components.wemo
|
2018-01-01 23:32:26 +00:00
|
|
|
pywemo==0.4.25
|
2015-11-09 04:10:30 +00:00
|
|
|
|
2018-01-25 22:48:38 +00:00
|
|
|
# homeassistant.components.camera.xeoma
|
|
|
|
pyxeoma==1.2
|
|
|
|
|
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
|
2017-04-13 14:39:36 +00:00
|
|
|
qnapstats==0.2.4
|
2017-02-02 20:29:04 +00:00
|
|
|
|
2017-06-22 11:34:00 +00:00
|
|
|
# homeassistant.components.switch.rachio
|
|
|
|
rachiopy==0.1.2
|
|
|
|
|
2016-08-19 07:17:28 +00:00
|
|
|
# homeassistant.components.climate.radiotherm
|
2017-06-23 09:08:23 +00:00
|
|
|
radiotherm==1.3
|
2015-12-27 11:32:08 +00:00
|
|
|
|
2017-09-29 08:08:41 +00:00
|
|
|
# homeassistant.components.raincloud
|
2017-10-30 07:36:38 +00:00
|
|
|
raincloudy==0.0.4
|
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
|
|
|
|
2017-08-08 07:49:25 +00:00
|
|
|
# homeassistant.components.switch.rainmachine
|
2017-08-15 18:03:40 +00:00
|
|
|
regenmaschine==0.4.1
|
2017-08-08 07:49:25 +00:00
|
|
|
|
2017-06-09 10:38:40 +00:00
|
|
|
# homeassistant.components.python_script
|
2017-10-30 07:02:15 +00:00
|
|
|
restrictedpython==4.0b2
|
2017-06-09 10:38:40 +00:00
|
|
|
|
2017-01-31 16:11:52 +00:00
|
|
|
# homeassistant.components.rflink
|
2017-05-08 15:04:17 +00:00
|
|
|
rflink==0.0.34
|
2017-01-31 16:11:52 +00:00
|
|
|
|
2017-03-31 15:53:56 +00:00
|
|
|
# homeassistant.components.ring
|
2017-11-25 11:15:12 +00:00
|
|
|
ring_doorbell==0.1.8
|
2017-03-05 08:03:00 +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
|
2017-01-03 22:28:23 +00:00
|
|
|
samsungctl==0.6.0
|
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-01-07 13:57:26 +00:00
|
|
|
schiene==0.20
|
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
|
2017-10-27 06:00:53 +00:00
|
|
|
sendgrid==5.3.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
|
|
|
|
|
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
|
2017-12-11 15:44:15 +00:00
|
|
|
shodan==1.7.7
|
2017-08-10 15:27:49 +00:00
|
|
|
|
2017-09-24 22:48:30 +00:00
|
|
|
# homeassistant.components.notify.simplepush
|
2017-11-05 21:52:58 +00:00
|
|
|
simplepush==1.1.4
|
2017-09-24 22:48:30 +00:00
|
|
|
|
2017-02-19 01:47:52 +00:00
|
|
|
# homeassistant.components.alarm_control_panel.simplisafe
|
2017-08-24 06:09:50 +00:00
|
|
|
simplisafe-python==1.0.5
|
2017-02-19 01:47:52 +00:00
|
|
|
|
2017-10-08 18:14:39 +00:00
|
|
|
# homeassistant.components.skybell
|
|
|
|
skybellpy==0.1.1
|
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.notify.slack
|
2017-08-21 08:23:29 +00:00
|
|
|
slacker==0.9.60
|
2016-01-13 02:15:14 +00:00
|
|
|
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.notify.xmpp
|
2017-03-24 20:44:04 +00:00
|
|
|
sleekxmpp==1.3.2
|
2016-02-01 07:52:42 +00:00
|
|
|
|
2016-09-13 22:11:50 +00:00
|
|
|
# homeassistant.components.sleepiq
|
|
|
|
sleepyq==0.6
|
|
|
|
|
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
|
|
|
|
2016-02-09 23:29:28 +00:00
|
|
|
# homeassistant.components.media_player.snapcast
|
2017-11-17 01:32:26 +00:00
|
|
|
snapcast==2.0.8
|
2016-02-09 23:29:28 +00:00
|
|
|
|
2016-08-19 07:17:28 +00:00
|
|
|
# homeassistant.components.climate.honeywell
|
2017-11-28 05:09:04 +00:00
|
|
|
somecomfort==0.5.0
|
2016-02-13 22:00:47 +00:00
|
|
|
|
2016-02-04 23:21:37 +00:00
|
|
|
# homeassistant.components.sensor.speedtest
|
2017-10-20 18:28:11 +00:00
|
|
|
speedtest-cli==1.0.7
|
2016-02-04 23:21:37 +00:00
|
|
|
|
2016-07-02 18:22:51 +00:00
|
|
|
# homeassistant.components.recorder
|
2016-08-23 04:42:05 +00:00
|
|
|
# homeassistant.scripts.db_migrator
|
2018-01-15 22:24:34 +00:00
|
|
|
sqlalchemy==1.2.1
|
2016-07-02 18:22:51 +00:00
|
|
|
|
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
|
|
|
|
|
2017-06-16 05:28:17 +00:00
|
|
|
# homeassistant.components.camera.onvif
|
|
|
|
suds-py3==1.3.3.0
|
|
|
|
|
2017-11-19 20:35:13 +00:00
|
|
|
# homeassistant.components.tahoma
|
|
|
|
tahoma-api==0.0.10
|
|
|
|
|
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
|
|
|
|
tapsaff==0.1.3
|
|
|
|
|
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
|
|
|
|
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-01-16 16:34:41 +00:00
|
|
|
teslajsonpy==0.0.19
|
2017-08-31 04:13:02 +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
|
|
|
|
toonlib==1.0.2
|
|
|
|
|
2017-04-04 10:21:53 +00:00
|
|
|
# homeassistant.components.alarm_control_panel.totalconnect
|
2017-11-24 23:21:31 +00:00
|
|
|
total_connect_client==0.16
|
2017-04-04 10:21:53 +00:00
|
|
|
|
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
|
|
|
|
2017-03-03 07:14:51 +00:00
|
|
|
# homeassistant.components.twilio
|
2017-01-28 20:45:32 +00:00
|
|
|
twilio==5.7.0
|
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
|
|
|
|
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
|
|
|
|
2017-11-29 06:53:12 +00:00
|
|
|
# homeassistant.components.frontend
|
|
|
|
user-agents==1.1.0
|
|
|
|
|
2016-02-06 01:24:44 +00:00
|
|
|
# homeassistant.components.camera.uvc
|
2017-09-14 05:21:58 +00:00
|
|
|
uvcclient==0.10.1
|
2016-02-06 01:24:44 +00:00
|
|
|
|
2018-01-25 17:34:53 +00:00
|
|
|
# homeassistant.components.climate.venstar
|
|
|
|
venstarcolortouch==0.5
|
|
|
|
|
2017-02-19 01:09:25 +00:00
|
|
|
# homeassistant.components.volvooncall
|
2017-11-11 20:21:25 +00:00
|
|
|
volvooncall==0.4.0
|
2016-11-02 05:01:00 +00:00
|
|
|
|
2015-11-17 08:18:42 +00:00
|
|
|
# homeassistant.components.verisure
|
2017-07-04 04:26:55 +00:00
|
|
|
vsure==1.3.7
|
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-12-17 07:24:35 +00:00
|
|
|
# homeassistant.components.media_player.webostv
|
2016-03-18 14:01:53 +00:00
|
|
|
# homeassistant.components.switch.wake_on_lan
|
|
|
|
wakeonlan==0.2.2
|
|
|
|
|
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-01-20 21:51:59 +00:00
|
|
|
# homeassistant.components.waterfurnace
|
2018-01-24 07:24:54 +00:00
|
|
|
waterfurnace==0.3.0
|
2018-01-20 21:51:59 +00:00
|
|
|
|
2016-05-14 20:28:42 +00:00
|
|
|
# homeassistant.components.media_player.gpmdp
|
2016-06-28 06:47:35 +00:00
|
|
|
websocket-client==0.37.0
|
2016-05-14 20:28:42 +00:00
|
|
|
|
2017-06-05 06:53:25 +00:00
|
|
|
# homeassistant.components.spc
|
2016-12-17 07:24:35 +00:00
|
|
|
# homeassistant.components.media_player.webostv
|
|
|
|
websockets==3.2
|
|
|
|
|
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
|
2017-11-09 10:49:19 +00:00
|
|
|
xknx==0.7.18
|
2017-09-07 07:11:55 +00:00
|
|
|
|
2017-08-02 05:41:51 +00:00
|
|
|
# homeassistant.components.media_player.bluesound
|
2016-07-14 01:30:11 +00:00
|
|
|
# homeassistant.components.sensor.swiss_hydrological_data
|
2016-10-05 04:57:40 +00:00
|
|
|
# homeassistant.components.sensor.ted5000
|
2016-02-01 07:52:42 +00:00
|
|
|
# homeassistant.components.sensor.yr
|
2017-04-29 21:59:38 +00:00
|
|
|
xmltodict==0.11.0
|
2016-04-06 20:51:26 +00:00
|
|
|
|
2016-09-20 06:38:10 +00:00
|
|
|
# homeassistant.components.sensor.yahoo_finance
|
2016-11-21 16:25:43 +00:00
|
|
|
yahoo-finance==1.4.0
|
2016-09-20 06:38:10 +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
|
|
|
|
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
|
2017-09-24 20:19:05 +00:00
|
|
|
yeelight==0.3.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
|
2017-02-27 18:47:51 +00:00
|
|
|
yeelightsunflower==0.0.8
|
2017-02-18 22:05:55 +00:00
|
|
|
|
2017-07-11 08:16:34 +00:00
|
|
|
# homeassistant.components.media_extractor
|
2018-01-15 22:23:53 +00:00
|
|
|
youtube_dl==2018.01.14
|
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
|
2017-06-15 19:25:19 +00:00
|
|
|
zeroconf==0.19.1
|
2017-12-05 13:22:27 +00:00
|
|
|
|
|
|
|
# homeassistant.components.media_player.ziggo_mediabox_xl
|
|
|
|
ziggo-mediabox-xl==1.0.0
|