Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imicknl/python-overkiz-api
Async Python wrapper to interact with internal Somfy TaHoma API, or other OverKiz API's.
https://github.com/imicknl/python-overkiz-api
cozy-touch hacktoberfest hi-kumo overkiz pyhoma python rexel somfy tahoma tahoma-api
Last synced: 29 days ago
JSON representation
Async Python wrapper to interact with internal Somfy TaHoma API, or other OverKiz API's.
- Host: GitHub
- URL: https://github.com/imicknl/python-overkiz-api
- Owner: iMicknl
- License: mit
- Created: 2020-07-03T10:00:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-16T11:13:56.000Z (about 1 month ago)
- Last Synced: 2024-10-16T21:47:42.450Z (30 days ago)
- Topics: cozy-touch, hacktoberfest, hi-kumo, overkiz, pyhoma, python, rexel, somfy, tahoma, tahoma-api
- Language: Python
- Homepage:
- Size: 2.57 MB
- Stars: 48
- Watchers: 7
- Forks: 29
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# 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 mainly used by Home Assistant Core, to offer the Overkiz integration. If you want to use this package in your own project, you can use the [following examples](#getting-started) to get started, or look at the [Home Assistant Code](https://github.com/home-assistant/core/tree/dev/homeassistant/components/overkiz) for more examples.
## Supported hubs
- Atlantic Cozytouch
- Bouygues Flexom
- Brandt Smart Control **\***
- Hitachi Hi Kumo
- Nexity Eugénie
- Rexel Energeasy Connect **\***
- Sauter Cozytouch
- Simu (LiveIn2)
- Somfy Connexoon IO
- Somfy Connexoon RTS
- Somfy TaHoma
- Somfy TaHoma Switch
- Thermor Cozytouch\[*] _These servers utilize an authentication method that is currently not supported by this library. To use this library with these servers, you will need to obtain an access token (by sniffing the original app) and create a local user on the Overkiz API platform._
## Installation
```bash
pip install pyoverkiz
```## Getting started
### Cloud API
```python
import asyncio
import timefrom pyoverkiz.const import SUPPORTED_SERVERS
from pyoverkiz.client import OverkizClient
from pyoverkiz.enums import ServerUSERNAME = ""
PASSWORD = ""async def main() -> None:
async with OverkizClient(USERNAME, PASSWORD, server=SUPPORTED_SERVERS[Server.SOMFY_EUROPE]) as client:
try:
await client.login()
except Exception as exception: # pylint: disable=broad-except
print(exception)
returndevices = 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())
```### Local API
```python
import asyncio
import time
import aiohttpfrom pyoverkiz.client import OverkizClient
from pyoverkiz.const import SUPPORTED_SERVERS, OverkizServer
from pyoverkiz.enums import ServerUSERNAME = ""
PASSWORD = ""
LOCAL_GATEWAY = "gateway-xxxx-xxxx-xxxx.local" # or use the IP address of your gateway
VERIFY_SSL = True # set verify_ssl to False if you don't use the .local hostnameasync def main() -> None:
token = "" # you can set the token here for testing purposes, to re-use an earlier generated tokenif not token:
# Generate new token via Cloud API
async with OverkizClient(
username=USERNAME, password=PASSWORD, server=SUPPORTED_SERVERS[Server.SOMFY_EUROPE]
) as client:await client.login()
gateways = await client.get_gateways()for gateway in gateways:
token = await client.generate_local_token(gateway.id)
await client.activate_local_token(gateway_id=gateway.id, token=token, label="Home Assistant/local-dev")
print(f"Token for {gateway.label} ({gateway.id}):")
print(token) # save this token for future use# Local Connection
session = aiohttp.ClientSession(
connector=aiohttp.TCPConnector(verify_ssl=VERIFY_SSL))async with OverkizClient(
username="", password="", token=token, session=session, verify_ssl=VERIFY_SSL, server=OverkizServer(
name="Somfy TaHoma (local)",
endpoint=f"https://{LOCAL_GATEWAY}:8443/enduser-mobile-web/1/enduserAPI/",
manufacturer="Somfy",
configuration_url=None,
)
) as client:
await client.login()print("Local API connection succesfull!")
print(await client.get_api_version())
setup = await client.get_setup()
print(setup)devices = await client.get_devices()
print(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
### DevContainer (recommended)
If you use Visual Studio Code with Docker or GitHub CodeSpaces, you can leverage the available devcontainer. This will install all required dependencies and tools and has the right Python version available. Easy!
### Manual
- Install Python 3.12
- Install [poetry](https://python-poetry.org): `curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python`
- Clone this repository
- `cd python-overkiz-api`
- Init the project: `poetry install`
- Run `poetry run pre-commit install`