--- id: jaraco-abode version: "6.4.0" license: MIT license_treatment: permissive maintenance: active --- # jaraco.abode — A library interfacing to the Abode home security system License: permissive · Maintenance: active · Downloads: 74.6K/mo ## What it is and what it does jaraco.abode is a reverse-engineered Python client for the Abode home security system. It provides both a programmatic API and command-line interface to interact with Abode alarm systems, including arming/disarming, controlling smart locks and door sensors, managing cameras, and triggering automations. The library wraps HTTP requests to Abode's servers and uses WebSocket connections (via lomond) to listen for real-time device state changes. The package is designed for home automation integrations where you need to control or monitor an Abode system from Python code. It handles authentication (including MFA support), device discovery, state queries, and event streaming. The maintainers note that API calls should be throttled to avoid overwhelming Abode's servers, and cloud push notifications should be leveraged when possible rather than polling. Use it for: - Integrate Abode alarm control into a broader home automation platform or custom dashboard - Automate lock/unlock sequences based on external triggers (location, time, or other sensors) - Monitor door and motion sensors in real time and log state changes to a database - Build a command-line tool to arm/disarm alarms or control devices without the Abode app - Trigger camera captures or video streams programmatically for security monitoring workflows ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. A Python library that interfaces with the Abode home security system API, allowing you to control alarms, devices, locks, cameras, and automations programmatically or via command line. Yes, if you own an Abode system and need programmatic control or integration with other tools. The package is actively maintained, has no known vulnerabilities, and uses a permissive MIT license. Install friction is low. The main caveat is that it relies on reverse-engineered APIs rather than official Abode support, so stability depends on Abode not changing their backend significantly. ## Install pip install jaraco-abode uv add jaraco-abode poetry add jaraco-abode ## Installing jaraco.abode Before you install: Low install friction with a pure-Python wheel distribution. The package is actively maintained with a recent commit on 2026-04-13 and stable status (Development Status :: 5 - Production/Stable). Requires Python 3.9 or later. License in practice: MIT license permits free use, modification, and distribution with minimal restrictions, making it suitable for both personal and commercial projects. Quickstart: pip install jaraco.abode from jaraco.abode import Abode abode = Abode(username='user@example.com', password='password') abode.get_devices() abode.arm('home') abode.logout() Requires Python 3.9 or later. Abode account credentials are needed. API calls faster than 60 seconds are not recommended per the package documentation. Verify before relying: - Whether the package supports MFA (multifactor authentication) mentioned in CLI help but not detailed in API docs - Current status of Abode's official API availability and whether reverse-engineered API remains stable - Whether WebSocket event listening (lomond dependency) works reliably across network conditions ## Package facts - License: MIT (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 74.6K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags abode alarm system api, home security system control, smart lock and door control, alarm automation python, security system integration, home automation api client, device state monitoring, home-automation, iot-integration, alarm-system [View on SkillFed](https://skillfed.io/packages/jaraco-abode) · [View on PyPI](https://pypi.org/project/jaraco-abode/)