Aqara Cloud API SDK
Project description
Aqara Cloud API
Python SDK for Aqara Cloud API
(Functionality is not full, but already has core for futher upgrades)
Install
pip install aqara_capi
Example of usage
from aqara_capi import CloudApiClient, Locality
# create client
client = CloudApiClient(
app_id=APP_ID, # your params from https://developer.aqara.com/console
app_key=APP_KEY,
key_id=KEY_ID,
locality=Locality.RU, # for cloud domain
)
# set access and refresh tokens
client.set_tokens(access_token='...', refresh_token='...')
# or generate them
client.get_auth_code(
account='my@example.com',
account_type=0,
access_token_validity='7d',
)
client.get_access_token(
auth_code='secret code from ur email',
account='my@example.com',
account_type=0,
)
# print your devices
response = client.query_device_info()
print(response.result)
# print device attributes
response = client.query_resource_info(
model='lumi.light....',
)
print(response.result)
# trigger some action (for example turn on light)
client.write_resource_device(
subject_id='lumi...',
resource_id='4.1.85',
value='1',
)
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file aqara_capi-1.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: aqara_capi-1.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb6848d186c0a9826dba600d302fdf489fa835cd6770ac1ca1cc88dd58676d71 |
|
MD5 | c625e91006667f5c7812dd5040ac9dd6 |
|
BLAKE2b-256 | 3d1d692b02c304643458c2da74f2d746fb885efc5750fdee709b8be78a57c197 |