Skip to main content

Python package to control Sengled Wifi Devices Programmatically.

Project description

SengledWifiPy

License Python version compatibility Version on PyPi

Python package for controlling Sengled Wifi devices.

NOTE: This has no relation with Sengled. There's no official API.

Features:

  • Simulates the behavior of the Android App.
  • Create a websocket connection to the MQTT broker to receive updates (Cloud Push).
  • Alternative method to publish an update without creating a websocket connection.

Documentation

Code Documentation

TL;DR The package is based on 3 classes:

  • SengledWifiLogin - Takes care of the login (requires credentials), reduces the API calls to a minimum by saving a session cookie locally.
  • SengledWifiMqtt - Requires a login (SengledWifiLogin), creates the connection to the MQTT server, subscribe to topics and publish updates. Is a wrapper for paho-mqtt.
  • SengledWifiApi - Uses the other two classes to get/set devices state

Usage example

Simple example that will subscribe to all the topics related to the devices in the Sengled account. SengledWifiMqtt can also receive callbacks for new messages (will be executed when an update is received).

import logging
import asyncio
from sengledwifipy import SengledLogin, SengledWifiAPI, SengledWifiMQTT

#set this for testing only
logging.basicConfig(level=logging.DEBUG)

def testing():
    async def testmqtt():
        login = SengledLogin(email = "email@domain.com",password  = "verysecure")
        await login.login()
        devices = await SengledWifiAPI.get_devices(login)
        MqttClient = SengledWifiMQTT(login)
        await MqttClient.async_connect(devices)
        while True:
            await asyncio.sleep(60)
    return asyncio.run(testmqtt())

testing()

This is a way to update the device state:

SengledWifiAPI.set_device_state(MqttClient,"deviceId",power_on=True, brightness=100)

Contributing

  1. Check for open features/bugs.
  2. Fork the repository.
  3. (Recommended) Use the latest version of Python supported >= 3.12.
  4. (Recommended) Install poetry (recommended installation method: pipx):
    • pipx install poetry
  5. Install the development environment:
    • poetry install --with dev
    • pre-commit install
  6. Code your new feature or bug fix on a new branch.
  7. Make sure to update the docstring as required.
  8. Submit a pull request!

Credits

Inspired by:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sengledwifipy-0.0.9.tar.gz (17.2 kB view hashes)

Uploaded Source

Built Distribution

sengledwifipy-0.0.9-py3-none-any.whl (22.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page