Skip to content

Python API for SmartTub enabled hot tubs

License

Notifications You must be signed in to change notification settings

inspirepfs/python-smarttub

 
 

Repository files navigation

python-smarttub

This package provides an API for querying and controlling hot tubs using the SmartTub system.

Installation

pip3 install python-smarttub

CLI

python3 -m smarttub --help
python3 -m smarttub -u SMARTTUB_EMAIL -p SMARTTUB_PASSWORD info --status

API

from smarttub import SmartTub

async with aiohttp.ClientSession() as session:
  st = SmartTub(session)
  await st.login(username, password)
  account = await st.get_account()
  spas = await account.get_spas()
  for spa in spas:
    spa.get_status()
    spa.get_pumps()
    spa.get_lights()
    ...
    # See pydoc3 smarttub.api for complete API

See also smarttub/__main__.py for example usage

Contributing

pip install pre-commit && pre-commit install

About

Python API for SmartTub enabled hot tubs

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%