Use more up-to-date version of pyfoscam library (#20419)
* Change foscam python library to pyfoscam, which is more up to date and has several critical bug fixes. * Update requirements_all.txt to match. * Inserting automatically generated requirements.txt
This commit is contained in:
parent
d179686edf
commit
29984efd8c
2 changed files with 5 additions and 5 deletions
|
@ -15,7 +15,7 @@ from homeassistant.helpers import config_validation as cv
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
REQUIREMENTS = ['libpyfoscam==1.0']
|
REQUIREMENTS = ['pyfoscam==1.2']
|
||||||
|
|
||||||
CONF_IP = 'ip'
|
CONF_IP = 'ip'
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ class FoscamCam(Camera):
|
||||||
|
|
||||||
def __init__(self, device_info):
|
def __init__(self, device_info):
|
||||||
"""Initialize a Foscam camera."""
|
"""Initialize a Foscam camera."""
|
||||||
from libpyfoscam import FoscamCamera
|
from foscam import FoscamCamera
|
||||||
|
|
||||||
super(FoscamCam, self).__init__()
|
super(FoscamCam, self).__init__()
|
||||||
|
|
||||||
|
|
|
@ -605,9 +605,6 @@ libnacl==1.6.1
|
||||||
# homeassistant.components.dyson
|
# homeassistant.components.dyson
|
||||||
libpurecoollink==0.4.2
|
libpurecoollink==0.4.2
|
||||||
|
|
||||||
# homeassistant.components.camera.foscam
|
|
||||||
libpyfoscam==1.0
|
|
||||||
|
|
||||||
# homeassistant.components.device_tracker.mikrotik
|
# homeassistant.components.device_tracker.mikrotik
|
||||||
librouteros==2.2.0
|
librouteros==2.2.0
|
||||||
|
|
||||||
|
@ -1017,6 +1014,9 @@ pyflunearyou==1.0.1
|
||||||
# homeassistant.components.light.futurenow
|
# homeassistant.components.light.futurenow
|
||||||
pyfnip==0.2
|
pyfnip==0.2
|
||||||
|
|
||||||
|
# homeassistant.components.camera.foscam
|
||||||
|
pyfoscam==1.2
|
||||||
|
|
||||||
# homeassistant.components.fritzbox
|
# homeassistant.components.fritzbox
|
||||||
pyfritzhome==0.4.0
|
pyfritzhome==0.4.0
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue