MirAIe-AC API for Python
Project description
MirAIe API for Python
Installation
pip install miraie-ac
Get started
import asyncio
from miraie_ac import MirAIeHub, MirAIeBroker
async def setup():
# Instantiate a MirAIeHub object
broker = MirAIeBroker()
# Instantiate a MirAIeHub object
hub = MirAIeHub()
# Intialize the hub (+91xxxxxxxxxx, password, broker)
await hub.init("<mobile>", "<password>", broker)
# Display list of available devices
print( hub.home.devices )
# Wait till connection has been established with the broker
async def waitForClient():
while not hasattr(broker, 'client') or getattr(broker, 'client') is None:
await asyncio.sleep(1)
await waitForClient()
# Now you can run any operation on the device(s)
hub.home.devices[0].turn_off()
asyncio.run(setup())
Logs can be enabled in Home Assistant as follows
logger:
...
logs:
...
custom_components.miraie: debug
...
Notes
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
miraie_ac-1.0.7.tar.gz
(8.4 kB
view hashes)
Built Distribution
miraie_ac-1.0.7-py3-none-any.whl
(10.8 kB
view hashes)
Close
Hashes for miraie_ac-1.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2788e6f7295ebe4a997318b6a6e03eac665c6a9510065a5c92fa43c6f1b565be |
|
MD5 | a622f1c46acb37f1b163efbaaadf50e0 |
|
BLAKE2b-256 | a9b71034ee656ca58a85aee00e11023f34940ee8132a0f2e1fb0cb26d17a7ffd |