Control Shelly Home Automation Devices
Project description
ishelly
A shelly api wrapper library which uses pydantic models to use the api and as much of the shelly v2 features as possible. No shelly v1 support planned.
This library was built with the support of the LightningSpore open-source mushroom growing project:
Supported Devices
Available Devices
- Shelly Plug US
- Shelly 2PM
- Shelly Pro 4PM
Install
pip install ishelly
Usage
Switch Control
from ishelly.components.switch import *
from ishelly.components.schedule import *
from ishelly.components.shelly import *
from ishelly.client import ShellyPlug, Shelly2PM, ShellyPro4PM
# Initialize a Shelly Pro 4PM device object
plug_pro = ShellyPro4PM("http://192.168.1.125")
# Switch IDs for the high power outlets
switch_id_high_power_1 = 0
switch_id_high_power_2 = 3
# Step 1: Create a schedule to turn on the high power outlet 1 every 5 minutes
timespec_on = "0 */5 * * * *"
turn_on = SwitchSetRequest(
id=1,
params=SwitchSetParams(id=switch_id_high_power_1, toggle_after=90, on=True),
)
# Step 2: Add the scheduled task to the device
plug_pro.schedule.create(enable=True, timespec=timespec_on, calls=[turn_on])
# Step 3: Print the current schedules on the device
current_schedule = plug_pro.schedule.list()
for task in current_schedule.jobs:
print(task)
# Step 4: Update an existing schedule (ID 4) to turn on the high power outlet 1 every 5 minutes
plug_pro.schedule.update(4, False, "0 */5 * * * *", calls=[turn_on])
# Step 5: Delete the schedule with ID 4
plug_pro.schedule.delete(4)
Device Discovery
from ishelly.client import ShellyDiscovery
discovery = ShellyDiscovery("10.0.0.0/24")
discovery.discover_devices()
Example
The above example code, and more is located at: examples
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
ishelly-0.1.5.2.tar.gz
(7.4 kB
view details)
Built Distribution
File details
Details for the file ishelly-0.1.5.2.tar.gz
.
File metadata
- Download URL: ishelly-0.1.5.2.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf09254373690d5a9a3e59010137e20305afc8c2125bbb76706a34fd9daf2eba |
|
MD5 | f75dbc0e4f24fbb2f95eee363abf7e84 |
|
BLAKE2b-256 | 49b7c1747662762893661242fc36951d7366b229e5ee525917d89b235740ce54 |
File details
Details for the file ishelly-0.1.5.2-py3-none-any.whl
.
File metadata
- Download URL: ishelly-0.1.5.2-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72a99392e39a6bf19591e88c6a9dc8b7a2200dd36a878a2a26c74742447d4705 |
|
MD5 | 4546708dc9c739fa9ce111da79f7998c |
|
BLAKE2b-256 | 37715e79ed9115dc497420b982fb89e386799650400c9ae35bfc77de8818151d |