Skip to main content

Python library for Huum saunas

Project description

huum - A python library for controlling Huum saunas

This library was created primarily to be used together with Home Assistant, but can be used as a stand-alone library as well. The API used by this library is sanctioned by Huum to be used by third parties. At least to the extent that they happily provided documentation for the API when asked about it.

This library has been tested against a Huum Drop sauna using the UKU Wi-Fi control unit.

No guarantees are given when using this library. You are using it at your own risk. Saunas can be dangerous if used without care or without the right security measures.

Installation

PIP

pip install huum

Poetry

poetry add huum

Quick guide

from huum import Huum

# Usage with env vars
huum = Huum()

# Setting auth variables explicitly
huum = Huum(username="foo", password="bar")

# If you don't have an existing aiohttp session
# then run `open_session()` after initilizing
huum.open_session()

# Turn on the sauna
huum.turn_on(80)

# Turn off the sauna
huum.turn_off(80)

Usage

The huum package is fully asynchronous.

Supported Python versions:

Python Supported
<= 3.8
3.9
3.10
3.11
3.12 Untested

Authentication

Authentication uses username + password. The same credentials that you use for logging into the Huum application.

Passing credentials to constructor

huum = Huum(username=<username>, password=<password>)

Sessions

You can use the library either with an already existing session or create one yourself. This design decision was created mainly to support Home Assistants (HA) existing sessions and complying with their guidelines. In most cases you will want to create your own session if you are using this outside of HA.

If you already have an existing session you can pass it to the constructor using the session argument.

huum = Huum(session=<session>)

If you want the library to create a new session, run open_session() after creating a Huum instance. You must do this before running any commands. You can close the session using close_session().

huum = Huum()
huum.open_session()
...
huum.close_session()

Controlling the sauna

Getting sauna status

The Huum API exposes a status endpoint for getting the current status of the sauna. This will return the basic information about the sauna. It will however not return all of the info that the sauna could give you when the sauna is not heating. You will however get this info if you try turning off the sauna again after it is already off. For that reason, this library exposes two methods of getting the status of the sauna, status() and status_from_status_or_stop(). The latter will first call the status endpoint, and if the sauna is off, then call the off endpoint to get the full status response.

The main difference, and the main reason to use the latter endpoint, is that status() will not give you the previously set temperature of the sauna is off, while status_from_status_or_stop() will.

huum.status()
huum.status_from_status_or_stop()

Turning on and setting temperature

The Huum API does not have a specific endpoint for turning on a setting the temperature. The same endpoint does both. This library has two functions for turning on and settings the temperature, mainly for exposing a nicer interface to the developer.

# Turns on the sauna and sets its temperature to 80
huum.turn_on(temperature=80)

# Identical the the above
huum.set_temperature(temperature=80)
Security concerns

Huums API does not check if the sauna door is open or not when turning it on. It will happily turn on the sauna while the door is open. The sauna itself will most likely still not heat as it has a security guard in the sauna, but it will turn it on and will start heating if the door is closed. The Huum mobile application however checks if the sauna door is open or closed before turning on the sauna.

To mimic the security guards of the mobile application the library, by default, checks the status of the sauna before it turns it on. If you do not want to have this check, then you can pass the argument safety_override=True to either turn_on() or set_temperature.

huum.set_temperature(temperature=80, safety_override=True)

Turning off the sauna

The sauna can be turned off by calling turn_off().

huum.turn_off()

Response objects

This library uses Pydantic schemas for all method responses. I recommend checking the /huum/schemas.py for checking responses.

Handling exceptions

All exceptions that are raised from making an HTTP request are coming directly from aiohttp. More of the time these will be aiohtto.ClientResponseError as all requests are done with raise_for_status set to True for requests that goes through aiohttp.

If the door is open and the sauna is turned on, and the client is not told to explicitly bypass security measures (see "Security concerns" above), then huum.exceptions.SafetyException will be raised.

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

huum-0.7.7.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

huum-0.7.7-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

Details for the file huum-0.7.7.tar.gz.

File metadata

  • Download URL: huum-0.7.7.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.7 Darwin/23.1.0

File hashes

Hashes for huum-0.7.7.tar.gz
Algorithm Hash digest
SHA256 b049edc8e3a10ab98464ec253b8a6ad6731c333126a72d386b81c707ae21ca14
MD5 fa5b737f184c7e6b8f7824186600ff6f
BLAKE2b-256 21bc9a03a0f5ffb8b272d5459af0d09d5e20aef6eb8b8be2cc4ee2ceb1ad41b4

See more details on using hashes here.

File details

Details for the file huum-0.7.7-py3-none-any.whl.

File metadata

  • Download URL: huum-0.7.7-py3-none-any.whl
  • Upload date:
  • Size: 7.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.7 Darwin/23.1.0

File hashes

Hashes for huum-0.7.7-py3-none-any.whl
Algorithm Hash digest
SHA256 d1f8c25e81c0643089a959a25002bee8f6a8874eee9fb33e8521d46bd2586b16
MD5 e5343804c9fb8816061c2a339f44b005
BLAKE2b-256 b2682409d962e042e6452ad632591942aa05ca148ea55d61caf824151b7d8f3e

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