This package allows controlling devices in a SmartHab-powered home.
Project description
python-smarthab
This Python library allows you to programmatically control your SmartHab-powered home.
Security warning!
SmartHab currently offers no secure connection to their API. The credentials are sent in clear-text. You've been warned.
What is SmartHab?
SmartHab is a company that installs their home automation solution in new buildings, and offers a mobile application for home owners or renters to control their home over the Internet.
Mobile App → API → SmartHab box (1 at each floor) → Z-Wave devices
What does this library do?
python-smarthab
connects to the SmartHab API and allows you to automate your
home without having to use the mobile application.
It might prove particularly useful if integrated into a home automation box or software. Feel free to use it, it's under the GPL!
How do I use it?
pip3 install SmartHab
import pysmarthab
hub = pysmarthab.SmartHab()
# Login
hub.login('smarthab.user@example.com', '1234567')
if not hub.is_logged_in:
# Bad credentials :(
raise SystemExit
# Get the list of available devices
devices = hub.get_device_list()
# Close all roller shutters and turn on all lights
for device in devices:
if isinstance(device, pysmarthab.Light):
device.turn_on()
if isinstance(device, pysmarthab.Shutter):
device.close()
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
File details
Details for the file SmartHab-0.15.tar.gz
.
File metadata
- Download URL: SmartHab-0.15.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed7b3cf179d681ef67e4b555922369b80df85c577946cc7387189f4ffd13a0b4 |
|
MD5 | b86c4b97380edf7c232b8f81e158b286 |
|
BLAKE2b-256 | eb93541d9d5fa935ecfab54af358229eea6c0b9c7a5c91ea7e39c9803a8899a8 |