Skip to main content

Async Python client to interact with internal OverKiz API (e.g. used by Somfy TaHoma).

Project description

Python client for OverKiz API

A fully async and easy to use API client for the (internal) OverKiz API. You can use this client to interact with smart devices connected to the OverKiz platform, used by various vendors like Somfy TaHoma and Atlantic Cozytouch.

This package is written for the Home Assistant ha-tahoma integration, but could be used by any Python project interacting with OverKiz hubs.

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 API client.

Supported hubs

  • Atlantic Cozytouch
  • Hitachi Hi Kumo
  • Nexity Eugénie
  • Rexel Energeasy Connect
  • Somfy Connexoon IO
  • Somfy Connexoon RTS
  • Somfy TaHoma
  • Somfy TaHoma Switch
  • Thermor Cozytouch

Installation

pip install pyoverkiz

Getting started

import asyncio
import time

from pyoverkiz.const import SUPPORTED_SERVERS
from pyoverkiz.client import OverkizClient

USERNAME = ""
PASSWORD = ""

async def main() -> None:
    async with OverkizClient(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-overkiz-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-overkiz-api folder.

Go to File | Settings | Project: nre-tag | Project Interpreter. Your interpreter must look like <whatever>/python-overkiz-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

pyoverkiz-1.0.1.tar.gz (26.8 kB view details)

Uploaded Source

Built Distribution

pyoverkiz-1.0.1-py3-none-any.whl (28.1 kB view details)

Uploaded Python 3

File details

Details for the file pyoverkiz-1.0.1.tar.gz.

File metadata

  • Download URL: pyoverkiz-1.0.1.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

Hashes for pyoverkiz-1.0.1.tar.gz
Algorithm Hash digest
SHA256 6bb608a7aea5f7d01b2ff3302796b676a00a5e662d1f244252462221825c9881
MD5 404b96a7fdbf50d261a484899d603ce6
BLAKE2b-256 aa0274b50ef5420109529fb4909278b705c061b34b01bc74cdd23feeb6b922d2

See more details on using hashes here.

File details

Details for the file pyoverkiz-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: pyoverkiz-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 28.1 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

Hashes for pyoverkiz-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 697eebdfce452c67f85455b79e3b2f591079b1aa62862a3c158fb2cf40beec9c
MD5 0936aa5a6809ed9a325d33b3ffe611c6
BLAKE2b-256 2d0324e59054faa6f9086fefee8e4b5c12312fc79160aa92c4bfee7d0b055b65

See more details on using hashes here.

Supported by

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