A Python client for HKC SecureComm API
Project description
HKC Alarm API Python Wrapper
Python module for interacting with HKC's Alarm API, allowing for easy interactions with the alarm system.
Note: This uses a private API, which means it is subject to change without notice and can break at any time. Always be cautious and respectful when using private APIs. To mimic the behavior of the app and reduce the chance of being rate-limited or blocked, it is recommended to limit requests to the API to one every 5-10 seconds, especially when fetching logs or inputs, similar to HKC's new v2 App.
Features
- Retrieve system status.
- Fetch all inputs.
- View recent logs.
- Arm and disarm the alarm in various modes.
Installation
- Clone this repository:
git clone https://github.com/jasonmadigan/pyhkc
- Navigate to the repository's directory:
cd pyhkc
- Install the required packages:
pip install -r requirements.txt
Dependencies
requests==2.31.0
tabulate==0.9.0
Example Usage
from hkc_alarm import HKCAlarm
# Initialize the system with your credentials.
panel_id = [your-panel-id] # replace with your panel ID
panel_password = "[your-panel-password]" # replace with your panel password
user_code = [your-user-code] # replace with your user code
alarm_system = HKCAlarm(panel_id, panel_password, user_code)
# Retrieve system status.
status = alarm_system.get_system_status()
print("System Status:", status)
# Fetch all inputs.
inputs = alarm_system.get_all_inputs()
print("All Inputs:", inputs)
# View recent logs.
logs = alarm_system.fetch_logs()
print("Recent Logs:", logs)
# Arm the system.
# alarm_system.arm_fullset()
# Disarm the system.
# alarm_system.disarm()
Publishing
python3 setup.py sdist bdist_wheel
twine upload dist/*
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
Built Distribution
File details
Details for the file pyhkc-0.4.5.tar.gz
.
File metadata
- Download URL: pyhkc-0.4.5.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7484472f9ac0227cb3c37e1c2284af48077477518256cb8667e408161324671 |
|
MD5 | 796bb411b29d3d47ee975280ae71cd23 |
|
BLAKE2b-256 | 395f1064b9a2add009ccb06adbea61b1ba85880d0f51248c0c0a2cf2e1e3ae01 |
File details
Details for the file pyhkc-0.4.5-py3-none-any.whl
.
File metadata
- Download URL: pyhkc-0.4.5-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a09d0e1bf66147290c9a89e55230492361c2afcbbc6ec9052372135938293f7 |
|
MD5 | e09c26113d2542a3ed94cfb2066dd2f0 |
|
BLAKE2b-256 | 2835b8e03697fabe8cc0c7821f2c2997c565d557171eb069ef3f4323679997ac |