File: __init__.py

package info (click to toggle)
python-vsure 2.6.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: python: 773; makefile: 4
file content (27 lines) | stat: -rw-r--r-- 480 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""
A python module for reading and changing status of verisure devices through
verisure app API.
"""

__all__ = [
    'Error',
    'LoginError',
    'ResponseError',
    'Session',
]

from .session import ( # NOQA
    Error,
    LoginError,
    VariableTypes,
    ResponseError,
    Session,
)

ALARM_ARMED_HOME = 'ARMED_HOME'
ALARM_ARMED_AWAY = 'ARMED_AWAY'
ALARM_DISARMED = 'DISARMED'
LOCK_LOCKED = 'LOCKED'
LOCK_UNLOCKED = 'UNLOCKED'
SMARTPLUG_ON = 'on'
SMARTPLUG_OFF = 'off'