Lightweight Python module to discover and control WeMo devices
Project description
Python 3 module to setup, discover and control WeMo devices.
Dependencies
pyWeMo depends on Python packages: requests, ifaddr, lxml, urllib3
How to use
>>> import pywemo
>>> devices = pywemo.discover_devices()
>>> print(devices)
[<WeMo Insight "AC Insight">]
>>> devices[0].toggle()
If discovery doesn’t work on your network
On some networks discovery doesn’t work reliably, in that case if you can find the ip address of your Wemo device you can use the following code.
>>> import pywemo
>>> url = pywemo.setup_url_for_address("192.168.1.192", None)
>>> print(url)
http://192.168.1.192:49153/setup.xml
>>> device = pywemo.discovery.device_from_description(url, None)
>>> print(device)
<WeMo Maker "Hi Fi Systemline Sensor">
Please note that discovery.device_from_description call requires a url with an IP address, rather than a hostnames. This is needed for the subscription update logic to work properly. In addition recent versions of the WeMo firmware may not accept connections from hostnames, and will return a 500 error.
The setup_url_for_address function will lookup a hostname and provide a suitable url with an IP address.
Device Reset and Setup
pywemo includes the ability to reset and setup devices, without using the Belkin app or needing to create a Belkin account. This can be particularly useful if the intended use is fully local control, such as using Home Assistant.
Reset can be performed with the reset method, which has 2 boolean input arguments, data and wifi. Setting data=True will reset data (“Clear Personalized Info” in the Wemo app), which resets the device name and clears the icon and rules. Setting wifi=True will clear wifi information (“Change Wi-Fi” in the Wemo app), which does not clear the rules, name, etc. Setting both to true is equivalent to a “Factory Restore” from the app. It should also be noted that devices contain a hardware reset procedure as well, so using the software is for convenience or if physical access is not available.
Device setup is through the setup method. The user must first connect to the devices locally broadcast access point, then discover the device there. Once done, pass the desired SSID and password (AES encryption only) to the setup method to connect it to your wifi network.
Important Note for Device Setup - OpenSSL is Required!
OpenSSL is used to encrypt the password by the pywemo library. It must be installed and available on the path via calling openssl with a terminal (or command prompt, if on Windows). This is not required if connecting the device to an open network, since that requires no password, although an open network certainly isn’t recommended.
Firmware Warning
Starting in May of 2020, Belkin started requiring users to create an account and login to the app (Android app version 1.25). In addition to the account, most of the app functionality now requires a connection to the cloud (internet access), even for simple actions such as toggling a switch. All of the commands that go through the cloud are encrypted and cannot be easily inspected. This raises the possibility that Belkin could, in the future, update Wemo device firmware and make breaking API changes that can not longer be deciphered. If this happens, pywemo may no longer function on that device. It would be prudent to upgrade firmware cautiously and preferably only after confirming that breaking API changes have not been introduced.
Developing
Setup and builds are fully automated. You can run build pipeline locally by running.
# Setup, build, lint and test the code:
./scripts/build.sh
History
This started as a stripped down version of ouimeaux, but has since taken its own path.
License
Some of the code in pywemo/ouimeaux_device was originally written by by Ian McCracken (and is copyright). It is released under the BSD license. The overall library is released under the MIT license.
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 pywemo-0.6.2.tar.gz
.
File metadata
- Download URL: pywemo-0.6.2.tar.gz
- Upload date:
- Size: 72.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.7.9 Linux/5.4.0-1039-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d021e5cba100fa649cf7e520fb040fd0b04bb8c4ac92b322a9a886a5c39f22f |
|
MD5 | 5777fd9a92dd2af91499af8b65bdb799 |
|
BLAKE2b-256 | c883c88a5a590b271f2317b28ac047dab6824c1b5af812ace4bab93c934b4d9a |
Provenance
File details
Details for the file pywemo-0.6.2-py3-none-any.whl
.
File metadata
- Download URL: pywemo-0.6.2-py3-none-any.whl
- Upload date:
- Size: 80.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.7.9 Linux/5.4.0-1039-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f99be3b472a83582fe8c1f0b28921a7ae60ec179f32fa5f50fbf8667824f19ab |
|
MD5 | 45581d814168955ad921d84921df39cd |
|
BLAKE2b-256 | 21ce83adcdc237a96b43b02c792f9515db7c6f30895a9f3321008e2a1428a729 |