(deprecated, use pyoverkiz instead). Async Python wrapper to interact with internal Somfy TaHoma API, or other OverKiz API's.
Project description
Deprecation Notice
pyhoma
is deprecated. Please use pyoverkiz
1.0 which is backwards compatible. See https://github.com/iMicknl/python-overkiz-api.
Somfy TaHoma / OverKiz
An updated and async version of the original tahoma-api by @philklei. The aim of this wrapper is to offer an easy to consume Python wrapper for the internal API's used by tahomalink.com, or other vendors which use the OverKiz platform.
Somfy TaHoma has an official API, which can be consumed via the Somfy-open-api. Unfortunately only a few device classes are supported via the official API, thus the need for this wrapper.
This package is written for the Home Assistant ha-tahoma integration, but could be used by any Python project interacting with Somfy TaHoma devices.
Installation
pip install pyhoma
Getting started
import asyncio
import time
from pyhoma.const import SUPPORTED_SERVERS
from pyhoma.client import TahomaClient
USERNAME = ""
PASSWORD = ""
async def main() -> None:
async with TahomaClient(USERNAME, PASSWORD, server=SUPPORTED_SERVERS["somfy_europe"]) as client:
try:
await client.login()
except Exception as exception: # pylint: disable=broad-except
print(exception)
return
devices = await client.get_devices()
for device in devices:
print(f"{device.label} ({device.id}) - {device.controllable_name}")
print(f"{device.widget} - {device.ui_class}")
while True:
events = await client.fetch_events()
print(events)
time.sleep(2)
asyncio.run(main())
Development
Installation
-
For Linux, install pyenv using pyenv-installer
-
For MacOS, run
brew install pyenv
-
Don't forget to update your
.bashrc
file (or similar):export PATH="~/.pyenv/bin:$PATH" eval "$(pyenv init -)"
-
Install the required dependencies
-
Install poetry:
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
-
Clone this repository
-
cd python-tahoma-api
-
Install the required Python version:
pyenv install
-
Init the project:
poetry install
-
Run
poetry run pre-commit install
PyCharm
As IDE you can use PyCharm.
Using snap, run snap install pycharm --classic
to install it.
For MacOS, run brew cask install pycharm-ce
Once launched, don't create a new project, but open an existing one and select the python-tahoma-api folder.
Go to File | Settings | Project: nre-tag | Project Interpreter. Your interpreter must look like <whatever>/python-tahoma-api/.venv/bin/python
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 pyhoma-0.7.4.tar.gz
.
File metadata
- Download URL: pyhoma-0.7.4.tar.gz
- Upload date:
- Size: 26.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.10.1 Linux/5.11.0-1022-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e06bd6d27acbf379a488a5cb1c772c9e5b2832589c0499e37eb91f3f296b9ca5 |
|
MD5 | ab74102d41d3e688247f6f22b0718b5c |
|
BLAKE2b-256 | 27388f131765026ebfa7d183828848b2c8d26072e13739e57df58692ccb69b55 |
File details
Details for the file pyhoma-0.7.4-py3-none-any.whl
.
File metadata
- Download URL: pyhoma-0.7.4-py3-none-any.whl
- Upload date:
- Size: 28.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.10.1 Linux/5.11.0-1022-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 691961989242c26e9983d93fbcfa47b7fadbbe41121d2dc49e5c409eb4330cf1 |
|
MD5 | 44cb3eb688984e34b9334b7f3a43387d |
|
BLAKE2b-256 | 0681189585b444353044c0fb73a96fc77fcd821c3cc814babcbafeb64521d609 |