Skip to main content

Async Python wrapper to interact with internal Somfy TaHoma API, or other OverKiz API's.

Project description

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.client import TahomaClient

SUPPORTED_ENDPOINTS = {
    "Cozytouch": "https://ha110-1.overkiz.com/enduser-mobile-web/enduserAPI/",
    "eedomus": "https://ha101-1.overkiz.com/enduser-mobile-web/enduserAPI/",
    "Hi Kumo": "https://ha117-1.overkiz.com/enduser-mobile-web/enduserAPI/",
    "Rexel Energeasy Connect": "https://ha112-1.overkiz.com/enduser-mobile-web/enduserAPI/",
    "Somfy Connexoon IO": "https://tahomalink.com/enduser-mobile-web/enduserAPI/",
    "Somfy Connexoon RTS": "https://ha201-1.overkiz.com/enduser-mobile-web/enduserAPI/",
    "Somfy TaHoma": "https://tahomalink.com/enduser-mobile-web/enduserAPI/",
    "Somfy (Australia)": "https://ha201-1.overkiz.com/enduser-mobile-web/enduserAPI/",
    "Somfy (Europe)": "https://tahomalink.com/enduser-mobile-web/enduserAPI/",
    "Somfy (North America)": "https://ha401-1.overkiz.com/enduser-mobile-web/enduserAPI/",
}

USERNAME = ""
PASSWORD = ""

async def main() -> None:
    async with TahomaClient(USERNAME, PASSWORD, api_url=SUPPORTED_ENDPOINTS["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


Download files

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

Source Distribution

pyhoma-0.5.11.tar.gz (15.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyhoma-0.5.11-py3-none-any.whl (14.4 kB view details)

Uploaded Python 3

File details

Details for the file pyhoma-0.5.11.tar.gz.

File metadata

  • Download URL: pyhoma-0.5.11.tar.gz
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.9.4 Linux/5.4.0-1043-azure

File hashes

Hashes for pyhoma-0.5.11.tar.gz
Algorithm Hash digest
SHA256 b2639797b2723877aee67a2fa8337c9d2b538e808ed0c2c637cf5df608056d3c
MD5 e1a0fe0ff0459e6031965cc7bdcf1709
BLAKE2b-256 5ad5d9a2dcec0ccfff1df10a3627d51b23d7a675a21dcc8d40cbb4567b786fba

See more details on using hashes here.

File details

Details for the file pyhoma-0.5.11-py3-none-any.whl.

File metadata

  • Download URL: pyhoma-0.5.11-py3-none-any.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.9.4 Linux/5.4.0-1043-azure

File hashes

Hashes for pyhoma-0.5.11-py3-none-any.whl
Algorithm Hash digest
SHA256 9dfcfd81ae316e122b2722bee62cd4e58b6e8f510b6dc7e6ca897cf4789818e1
MD5 e2849a2e1399a46ffee27b0ff5b3924d
BLAKE2b-256 2865721a04588a0caeda0787b5f14973f56fe7ac700c02264e0d9593e04d99b9

See more details on using hashes here.

Supported by

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