A wrapper for Gizwits OpenAPI and websocket API
Project description
pyGizwits
This package is a wrapper for Gizwits OpenAPI and websocket API. It allows you get connect using the App ID for the device type you have registered, then register for websocket updates for the devices you choose.
Credit to cdpuk as alot of the code has been inspired by https://github.com/cdpuk/ha-bestway
Example Usage
The below will login to the US api and get the devices currently bound to your devices. It will then fetch their current status as well as then subscribe to receive the websocket updates for the devices.
from pyGizwits import pyGizwits
from aiohttp import ClientSession
import asyncio
async def main()
username = 'youremailaddress'
password = 'yourpassword'
app_id = 'appidfromappyourdeviceisregisteredin'
session = ClientSession()
region = pyGizwits.GizwitsClient.Region.US
client = pyGizwits.GizwitsClient(session,app_id,region)
@client.on('device_status_update')
def handle_device_status_update(update):
print(f"Got Update")
print(update)
await client.login(username,password)
await client.refresh_bindings()
devices: dict[str, pyGizwits.GizwitsDeviceReport] = await client.fetch_devices()
for device in devices:
await client.Subscribe_to_device_updates(devices[device].device)
await asyncio.sleep(60)
await session.close()
asyncio.run(main())
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 pygizwits-0.0.3.tar.gz
.
File metadata
- Download URL: pygizwits-0.0.3.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.24.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 48bda107fc3cba3681fdcb58552ea5cb121351dc9ceebe6fc5d2ec45800efaaa |
|
MD5 | 3d087ca92d8fa3dbebbd09513582615b |
|
BLAKE2b-256 | 1bb0f8efe4a8d142da034d6b2f90740be0d3cec2491ca466d38835220207421e |
Provenance
File details
Details for the file pygizwits-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: pygizwits-0.0.3-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.24.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28dfef3881d7aeda6f812dfc437f780b1e53853b260e34afbc6741c5b3dbc499 |
|
MD5 | cb058fbdd848606b0966cd5e1133b1ea |
|
BLAKE2b-256 | 7d800f0d3440c21ca8d3e888f417e5aea237d14cef344593126b6da637351ac5 |