A Python client for interacting with the Glue Home API.
Project description
GlueHome Python Package
This Python package provides a client for interacting with the GlueHome API, allowing you to control and monitor your GlueHome smart locks.
Features
- Authentication with GlueHome API
- Retrieve information about all your locks
- Get details for specific locks
- Control locks (lock/unlock)
Installation
You can install the GlueHome package using pip:
pip install gluehome
Usage
Here's a quick example of how to use the GlueHome package:
from gluehome import GlueAuth, GlueClient
# Authenticate and get API key
auth = GlueAuth("your_username", "your_password")
api_key = auth.issue_api_key()
# Create a client
client = GlueClient(api_key)
# Get all locks
all_locks = client.get_all_locks()
# Get a specific lock
lock = client.get_lock("lock_id")
# Get multiple specific locks
locks = client.get_locks(["lock_id1", "lock_id2"])
# Control a lock
lock.lock() # Lock the door
lock.unlock() # Unlock the door
# Update lock information
lock.update()
# Get lock information
print(f"Lock: {lock.description}")
print(f"Status: {lock.connection_status}")
print(f"Battery: {lock.battery_status}%")
print(f"Last event: {lock.last_lock_event.event_type} at {lock.last_lock_event.event_time}")
Configuration
The package requires an API key for authentication. You can either:
- Provide your GlueHome username and password to
GlueAuth
to generate an API key. - Use an existing API key directly with
GlueClient
.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Disclaimer
This package is not officially associated with or endorsed by GlueHome.
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 gluehome-0.1.2.tar.gz
.
File metadata
- Download URL: gluehome-0.1.2.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26bf2fb64530437ec18a59fbbccd600cf8658c22bf6c9929bbc47fbe7c758bbb |
|
MD5 | 5d04477dedc0b6981af205416f8f0c41 |
|
BLAKE2b-256 | 5cf79bc6fb78156715e45a27a10754f0909ad36ddccb1cbe6ade9303cffb839c |
File details
Details for the file gluehome-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: gluehome-0.1.2-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21be111f5d7e58913a95a93b5b2d8e78334e9e19f83885ec4f52ab5243016bde |
|
MD5 | 19519bc0eb499e70ed7d53a33df853a1 |
|
BLAKE2b-256 | bae3756f98f05471b83bebcfae3aaf482f602070839821fbe07ee9732e45c980 |