Skip to main content

No project description provided

Project description

Tami 4 Edge / Edge+ API in Python

GitHub release workflow

tami4.png

Tami4EdgeAPI can be used to control Strauss'es Tami4 Edge / Edge+ devices.
You can boil the water, prepare drinks, get information about the filter or UV light and other information about the device.

Installing

pip install Tami4EdgeAPI

Authenticating

You first need to obtain a refresh_token by requesting an sms code to the phone you registered to the app with.

from Tami4EdgeAPI import Tami4EdgeAPI

# You must add the country code!
phone_number = "+972xxxxxxxxx"

Tami4EdgeAPI.request_otp(phone_number)
otp_code = input("Enter OTP: ")
refresh_token = Tami4EdgeAPI.submit_otp(phone_number, otp_code)

Store the refresh_token somewhere safe, you will use it to authenticate with the API.

Usage

edge = Tami4EdgeAPI(refresh_token)
print(f"Bar Name: {edge.device.name}, Firmware Version: {edge.device.device_firmware}")

Boil Water

edge.boil_water()

Get User Drinks

drinks = edge.get_drinks()
for drink in drinks:
  print(drink.name)

Prepare A Drink

edge.prepare_drink(drink)

Get Filter / UV Information

water_quality = edge.get_water_quality()
water_quality.uv.last_replacement
water_quality.uv.upcoming_replacement
water_quality.uv.status
water_quality.filter.milli_litters_passed

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

Tami4EdgeAPI-2.1.tar.gz (5.4 kB view hashes)

Uploaded Source

Built Distribution

Tami4EdgeAPI-2.1-py3-none-any.whl (6.8 kB view hashes)

Uploaded Python 3

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