You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

SengledWifiPy

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

SengledWifiPy

Python package to control Sengled Wifi Devices Programmatically.

0.0.9
pipPyPI
Maintainers
1

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

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

Credits

Inspired by:

Keywords

Sengled

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts