Skip to main content

PyTado -- Pythonize your central heating

Linting and testing Build and deploy to pypi PyPI version codecov Open in Dev Containers

PyTado is a Python module implementing an interface to the Tado web API. It allows a user to interact with their Tado heating system for the purposes of monitoring or controlling their heating system, beyond what Tado themselves currently offer.

It is hoped that this module might be used by those who wish to tweak their Tado systems, and further optimize their heating setups.


Original author: Chris Jewell chrism0dwk@gmail.com

License: GPL v3

Copyright: Chris Jewell 2016-2018

Disclaimer

Besides owning a Tado system, I have no connection with the Tado company themselves. PyTado was created for my own use, and for others who may wish to experiment with personal Internet of Things systems. I receive no help (financial or otherwise) from Tado, and have no business interest with them. This software is provided without warranty, according to the GNU Public License version 3, and should therefore not be used where it may endanger life, financial stakes, or cause discomfort and inconvenience to others.

Usage

As of the 15th of March 2025, Tado has updated their OAuth2 authentication flow. It will now use the device flow, instead of a username/password flow. This means that the user will have to authenticate the device using a browser, and then enter the code that is displayed on the browser into the terminal.

PyTado handles this as following:

  1. The _login_device_flow() will be invoked at the initialization of a PyTado object. This will start the device flow and will return a URL and a code that the user will have to enter in the browser. The URL can be obtained via the method device_verification_url(). Or, when in debug mode, the URL will be printed. Alternatively, you can use the device_activation_status() method to check if the device has been activated. It returns three statuses: NOT_STARTED, PENDING, and COMPLETED. Wait to invoke the device_activation() method until the status is PENDING.

  2. Once the URL is obtained, the user will have to enter the code that is displayed on the browser into the terminal. By default, the URL has the user_code attached, for the ease of going trough the flow. At this point, run the method device_activation(). It will poll every five seconds to see if the flow has been completed. If the flow has been completed, the method will return a token that will be used for all further requests. It will timeout after five minutes.

  3. Once the token has been obtained, the user can use the PyTado object to interact with the Tado API. The token will be stored in the Tado object, and will be used for all further requests. The token will be refreshed automatically when it expires. The device_verification_url() will be reset to None and the device_activation_status() will return COMPLETED.

Screenshots of the device flow

Tado device flow: invoking Tado device flow: browser Tado device flow: complete

How to not authenticate the device again

It is possible to save the refresh token and reuse to skip the next login.

The following code will use the refresh_token file to save the refresh-token after login, and load the refresh-token if you create the Tado interface class again.

If the file doesn't exists, the web browser is started and the device authentication url is automatically opened. You can activate the device in the browser. When you restart the program, the refresh-token is reused and no web browser will be opened.

import webbrowser   # only needed for direct web browser access

from PyTado.interface.interface import Tado

tado = Tado(token_file_path="/var/tado/refresh_token")

status = tado.device_activation_status()

if status == "PENDING":
    url = tado.device_verification_url()

    webbrowser.open_new_tab(url)

    tado.device_activation()

    status = tado.device_activation_status()

if status == "COMPLETED":
    print("Login successful")
else:
    print(f"Login status is {status}")

Example code

"""Example client for PyTado"""

from PyTado.interface.interface import Tado


def main() -> None:
    """Retrieve all zones, once successfully logged in"""
    tado = Tado()

    print("Device activation status: ", tado.device_activation_status())
    print("Device verification URL: ", tado.device_verification_url())

    print("Starting device activation")
    tado.device_activation()

    print("Device activation status: ", tado.device_activation_status())

    zones = tado.get_zones()
    print(zones)


if __name__ == "__main__":
    main()

Note: For developers, there is an example.py script in examples/ which is configured to fetch data from your account. You can then invoke python examples/example.py.

Contributing

We are very open to the community's contributions - be it a quick fix of a typo, or a completely new feature!

You don't need to be a Python expert to provide meaningful improvements. To learn how to get started, check out our Contributor Guidelines first, and ask for help in GitHub Discussions if you have questions.

Development

We welcome external contributions, even though the project was initially intended for personal use. If you think some parts could be exposed with a more generic interface, please open a GitHub issue to discuss your suggestion.

Setting up a devcontainer

The easiest way to start, is by opening a CodeSpace here on GitHub, or by using the Dev Container feature of Visual Studio Code.

Open in Dev Containers

Dev Environment

To contribute to this repository, you should first clone your fork and then setup your development environment. Clone your repository as follows (replace yourusername with your GitHub account name):

git clone https://github.com/yourusername/PyTado.git
cd PyTado

Then, to create your development environment and install the project with its dependencies, execute the ./scripts/bootstrap script.

Coding Guidelines

To maintain a consistent codebase, we utilize black. Consistency is crucial as it helps readability, reduces errors, and facilitates collaboration among developers.

To ensure that every commit adheres to our coding standards, we've integrated pre-commit hooks. These hooks automatically run black before each commit, ensuring that all code changes are automatically checked and formatted.

For details on how to set up your development environment to make use of these hooks, please refer to the Development section of our documentation.

Testing

Ensuring the robustness and reliability of our code is paramount. Therefore, all contributions must include at least one test to verify the intended behavior.

To run tests locally, execute the test suite using pytest with the following command:

pytest tests/ --cov --cov-branch -vv

A message from the original author:

This software is at a purely experimental stage. If you're interested and can write Python, clone the Github repo, drop me a line, and get involved!

Best wishes and a warm winter to all!

Chris Jewell

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_tado-1.0.0.tar.gz (49.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_tado-1.0.0-py3-none-any.whl (65.8 kB view details)

Uploaded Python 3

File details

Details for the file python_tado-1.0.0.tar.gz.

File metadata

  • Download URL: python_tado-1.0.0.tar.gz
  • Upload date:
  • Size: 49.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for python_tado-1.0.0.tar.gz
Algorithm Hash digest
SHA256 5ad1d145225f90f70386d53b9863ace1a4f51e5e85c418b8f1736198bf9f3cb7
MD5 8fa3a5d03da149055f87ddfda26bef78
BLAKE2b-256 f66cf31139b5d5d06ff4f8d757b58a25ff04294fb5bc4494a87d18de1c58a4cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_tado-1.0.0.tar.gz:

Publisher: publish-to-pypi.yml on wmalgadey/PyTado

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_tado-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: python_tado-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 65.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for python_tado-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 533be92daec04a67ba07f85d9315d590040d1b07f20fac46238a32e88aa7df1e
MD5 8f8914bae0f703d487649e852a0f59a7
BLAKE2b-256 f2092849cb84b6847f531d1f1122c954197f579aa4e15fa392da8967762eef3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_tado-1.0.0-py3-none-any.whl:

Publisher: publish-to-pypi.yml on wmalgadey/PyTado

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.0.0 This release

2 files

0.19.2

2 files

0.19.1

2 files

0.19.0

2 files

0.18.16

2 files

0.18.15

2 files

0.18.14

2 files

0.18.13

2 files

0.18.12

2 files

0.18.11

2 files

0.18.10

2 files

0.18.9

2 files

0.18.8

2 files

0.18.7

2 files

0.18.6

2 files

0.18.5

2 files

0.18.4

2 files

0.18.3

2 files

0.18.2

2 files

0.18.1

2 files

0.18.0

2 files

0.17.7

2 files

0.17.6

2 files

0.17.5

2 files

0.17.4

2 files

0.17.3

2 files

0.17.0

2 files

0.16.0

2 files

0.15.0

2 files

0.13.0

2 files

0.12.0

2 files

0.11.0

2 files

0.10.0

2 files

0.8.1

2 files

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.9

1 file

0.2.7

1 file

0.2.6

2 files

0.2.5

3 files

0.2.3

1 file

0.2.2

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page