Adding TODOS
This commit is contained in:
parent
3c1d817c62
commit
a511314e9a
21
pyhomesfr.py
21
pyhomesfr.py
|
@ -14,11 +14,19 @@ So, if a program using a major does not work anymore with another version from t
|
||||||
The major 0 is a testing one
|
The major 0 is a testing one
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
# TODO:
|
||||||
|
## Return sensors in a class
|
||||||
|
## Manage cameras
|
||||||
|
### Get image
|
||||||
|
### Get video
|
||||||
|
## Manage logs
|
||||||
|
## Import/Export cookies
|
||||||
|
|
||||||
authors = (
|
authors = (
|
||||||
'Gilles "Almtesh" Émilien MOREL',
|
'Gilles "Almtesh" Émilien MOREL',
|
||||||
)
|
)
|
||||||
name = 'pyhomesfr'
|
name = 'pyhomesfr'
|
||||||
version = '0.8-20160511'
|
version = '0.8-20160521'
|
||||||
|
|
||||||
# Settable modes
|
# Settable modes
|
||||||
MODE_OFF = 0
|
MODE_OFF = 0
|
||||||
|
@ -41,6 +49,17 @@ def bytes2file (b):
|
||||||
r.seek (0)
|
r.seek (0)
|
||||||
return (r)
|
return (r)
|
||||||
|
|
||||||
|
def bytes2image (b):
|
||||||
|
'''
|
||||||
|
Gives a Image object from bytes
|
||||||
|
Uses the bytes2file function
|
||||||
|
'''
|
||||||
|
from PIL import Image
|
||||||
|
f = bytes2file (b)
|
||||||
|
r = Image ()
|
||||||
|
r.open (f)
|
||||||
|
return (r)
|
||||||
|
|
||||||
class HomeSFR ():
|
class HomeSFR ():
|
||||||
def __init__ (self, username, password, debug = False, autologin = True):
|
def __init__ (self, username, password, debug = False, autologin = True):
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in New Issue