Skip to main content

Python Interface for Alarm.com

Project description

pyalarmdotcomajax

Asynchronous Python Library for Accessing Alarm.com Services

This is an unofficial project that is not affiliated with Alarm.com.

Forked from Daren Lord's pyalarmdotcom.


PyPI GitHub

Installation / Usage

To install use pip:

pip install pyalarmdotcomajax

Or clone the repo:

git clone https://github.com/uvjustin/pyalarmdotcomajax.git
python setup.py install

Usage

See examples/basic_sensor_data.py for a basic usage example.

Device Support (Core Functions)

Pyalarmdotcomajax supports core features (monitoring and using actions) of the device types listed below.

  • As of v0.2, multiples of all devices are supported.
  • All devices include the attributes: name, id_, state, battery_low, battery_critical, malfunctioning, parent_ids, and a few others.
Device Type Notable Attributes Actions Notes
System unit_id (none)
Partition uncleared_issues arm away, arm stay, arm night, disarm
Sensor device_subtype (none)
Locks lock, unlock
Garage Door (none) open, close
Gate supports_remote_close open, close
Image Sensor images peek_in
Light brightness turn_on (with brightness), turn_off No support for RGB/W, effects, temperature, etc.
Thermostat temp_average, temp_at_tstat, step_value, supports_fan_mode, supports_fan_indefinite, supports_fan_circulate_when_off, supported_fan_durations, fan_mode, supports_heat, supports_heat_aux, supports_cool, supports_auto, min_heat_setpoint, min_cool_setpoint, max_heat_setpoint, max_cool_setpoint, heat_setpoint, cool_setpoint, supports_humidity, humidity, supports_schedules, supports_schedules_smart, schedule_mode set_attribute
Water Sensor (none)

Known Sensor deviceTypes

This list identifies deviceTypes used in the alarm.com API and is incomplete. Please help by submitting missing values.

deviceType Description
1 Contact Sensor
2 Motion Sensor
5 Smoke Detector
6 CO Detector
8 Freeze Sensor
9 Panic Button
10 Fixed Panic Button
14 Siren
19 Glass Break Detector
52 Vibration Contact Sensor
68 Panel Image Sensor
69 Mobile Phone (for Bluetooth Disarming)
83 Panel Glass Break Sensor
89 Panel Motion Sensor

Device Support (Configuration)

Pyalarmdotcomajax supports changing configuration options for the devices listed below.

Skybell HD

Doorbell Camera

Configuration Option Slug Supported Values Notes
Indoor Chime indoor-chime on, off
Outdoor Chime outdoor-chime off, low, medium, high
LED Brightness led-brightness 0-100
LED Color led-color #000000 - #FFFFFF Must include # at start.
Motion Sensor Sensitivity motion-sensitivity low, medium, high, very_high

Command Line Interface

The CLI is available by running adc from anywhere in your terminal. Use adc --help, adc get --help, and adc set --help for more information.

usage: adc [-h] [-d] [-ver] [-v] -u USERNAME -p PASSWORD [-n DEVICE_NAME] [-c COOKIE | -o ONE_TIME_PASSWORD] {get,set} ...

basic command line debug interface for alarm.com via pyalarmdotcomajax. shows device states in various formats.

options:
  -h, --help            show this help message and exit
  -d, --debug           show pyalarmdotcomajax's debug output.
  -ver, --version       show program's version number and exit
  -v, --verbose         show verbose output. -vv returns base64 image data for image sensor images.
  -u USERNAME, --username USERNAME
                        alarm.com username
  -p PASSWORD, --password PASSWORD
                        alarm.com password
  -n DEVICE_NAME, --device-name DEVICE_NAME
                        registers a device with this name on alarm.com and requests the two-factor authentication cookie for the device.
  -c COOKIE, --cookie COOKIE
                        two-factor authentication cookie. cannot be used with --one-time-password!
  -o ONE_TIME_PASSWORD, --one-time-password ONE_TIME_PASSWORD
                        provide otp code for accounts that have two-factor authentication enabled. if not provided here, adc will prompt user for otp. cannot be used with --cookie!

actions:
  {get,set}
    get                 get data from alarm.com. use 'adc get --help' for parameters.
    set                 set device configuration option. use 'adc set --help' for parameters

get options:
  -h, --help            show this help message and exit
  -x, --include-unsupported
                        return basic data for all known unsupported devices. always outputs in verbose format.

set options:
  -h, --help            show this help message and exit
  -i DEVICE_ID, --device-id DEVICE_ID
                        Numeric Alarm.com device identifier.
  -s SETTING_SLUG, --setting-slug SETTING_SLUG
                        Identifier for setting. Appears in parenthesis after setting name in adc set human readable output.
  -k NEW_VALUE, --new-value NEW_VALUE
                        New value for setting.

Examples

  1. Get human-readable status (and device IDs) for all devices: adc -u "your_username" -p "your_password" get
  2. Get raw JSON output from Alarm.com for all devices: adc -v -u "your_username" -p "your_password" get
  3. Turn off Skybell HD indoor chime (assume Skybell device ID is 283431032-1520): adc -u "your_username" -p "your_password" set -i "283431032-1520" -s "indoor-chime" -k "off"

Development

VS Code Support Structures

This repository includes a full development environment for VS Code:

  1. VS Code dev container. Automatically installs extensions and Python dependencies and registers Git pre-commit scripts.
  2. Configuration files for type checking (mypy), linting (ruff and black), etc.
  3. Pre-commit checks run all of the above when committing to Git and on demand via VS Code tasks.

References

  1. Some API definitions are available in the node-alarm-dot-com repository.

Open Items

Features

  1. Support additional components (lights, irrigation, etc.).
  2. Support more sensor types (see list above in this README).
  3. Add debug_info property to ADCController that returns aggregate of raw JSON from all endpoints. This will allow users to export the entity model of unsupported devices to help maintainers implement support in this library.
  4. Similar to above, proactively populate unsupported_device_types property for ADCBaseElement to show users device id, device name, and device type for available but unsupported devices.
  5. More granular exception handling when logging in. Should report discrete error types for authentication failures due to wrong credentials, connection issues, or other.

MIT License

Copyright (c) 2020 Justin Wong

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyalarmdotcomajax-0.5.9.tar.gz (59.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyalarmdotcomajax-0.5.9-py3-none-any.whl (72.8 kB view details)

Uploaded Python 3

File details

Details for the file pyalarmdotcomajax-0.5.9.tar.gz.

File metadata

  • Download URL: pyalarmdotcomajax-0.5.9.tar.gz
  • Upload date:
  • Size: 59.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for pyalarmdotcomajax-0.5.9.tar.gz
Algorithm Hash digest
SHA256 760ac6f41ae5d714d18506442a742809577d42d98f85d1631bfaf7622327f261
MD5 2e8df65142956d7d94525509ca62e5a0
BLAKE2b-256 693613455b69c5a2dcf77d64d4a2d6e29e2e152d4dfe9a600c7e5cf0f155ec56

See more details on using hashes here.

File details

Details for the file pyalarmdotcomajax-0.5.9-py3-none-any.whl.

File metadata

File hashes

Hashes for pyalarmdotcomajax-0.5.9-py3-none-any.whl
Algorithm Hash digest
SHA256 397a32bf4b1e01010fcf0862a5c35365f05170393545b5aff5209656ef742ead
MD5 e1efcf37d6bfa5819aca9c6082d5126a
BLAKE2b-256 b2d20b5542ac0994428656d67a8db62ec2a84a5ef54ada7c52c2389f6bb12ccb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page