Asynchronous library to retrieve details of your Aquacell water softener device
Project description
Aioaquacell
Asynchronous library to retrieve details of your Aquacell water softener device. This API is reverse engineered from the official Android application.
Requirements
- aiohttp
- aiobotocore
- requests_aws4auth
- pycognito
- aws_request_signer
- botocore
- botocore3
Usage
userName = "<email address>"
password = "<password>"
async def main():
api = AquacellApi()
await api.authenticate(userName, password)
# Get the refresh token
print(api.refresh_token)
softeners = await api.get_all_softeners()
for softener in softeners:
print(softener.name)
if __name__ == "__main__":
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
Authenticate using refresh token
refresh_token = "<refresh token>"
api = AquacellApi()
await api.authenticate(refresh_token)
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
aioaquacell-0.2.0.tar.gz
(10.1 kB
view details)
File details
Details for the file aioaquacell-0.2.0.tar.gz
.
File metadata
- Download URL: aioaquacell-0.2.0.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f690f0f5b7977f9dfe37ac1d2ad6134d61d1de68189a76c1564e6bb56d83750 |
|
MD5 | 0fbb620d364d292e5c60c9b65750f461 |
|
BLAKE2b-256 | c36d309044f0e1c604258cab00e3a6c07ec38a7579e1e3da7f45b2b28f2aa835 |