Skip to main content

An async client for connecting to Honeywell's TCC RESTful API.

Project description

evohome-async

Python client to asynchronously access the Total Connect Comfort RESTful API.

It is intended to be a faithful port of https://github.com/watchforstock/evohome-client, but async-aware. That is, it exposes a superset of the evohome-client schema (same namespace, same JSON), but with some notable differences between the two (see below).

It provides support for Honeywell/Resideo TCC-based systems, such as Evohome, Round Thermostat, VisonPro and others:

This client requires the aiohttp library. If you prefer a non-async client, evohome-client uses requests instead.

Please contact me (e.g. open an issue) if you would like to help extending the functionality of evohome-async to include cooling, as support for such is minimal currently.

CLI for schedules

If you download the git repo you can use a basic CLI for backup/restore of schedules (incl. DHW, if any), for example:

python client.py -u username@gmail.com -p password get-schedules --loc-idx 2 > schedules.json

... and to restore:

python client.py -u username@gmail.com -p password set-schedules --loc-idx 2 -f schedules.json

To avoid exceeding the vendor's API rate limit, you can cache the access tokens via the --cache-tokens switch.

Beware that the above switch will save your tokens to .evo-cache.tmp: this presents a security concern.

Differences from non-async version

The difference between the evohomeasync and evohomeclient libraries have been kept to the minimum, and it is planned for exisiting docs to be useful. Thus, it should be relatively easy to port your code over to this async library should you wish.

The non-async documentation (from evohomeclient) is available at http://evohome-client.readthedocs.org/en/latest/

Technical differences

Some additional functionality has been added to the methods that wrap the vendor APIs (e.g. restore schedules by name, as an alternative to by id). Note that this library is not able to expose more core functionality than it's non-async cousin (i.e. they both use the same vendor API).

Note that since 0.4.0, some attributes have been renamed, and a few have been deprecated altogether (when required, an informative exception will be thrown).

In both cases (evohomeclient2 and evohomeclient):

  • requires aiohttp instead of requests:
  • added a new instantiation argument, session to allow the client to utilize the consumer's aiohttp session
   self._session = kwargs.get('session', aiohttp.ClientSession(
       timeout=aiohttp.ClientTimeout(total=30)
   ))

For the newer evohome API (evohomeclient2):

  • import evohomeasync2 instead of import evohomeclient2
  • must invoke await client.login() after instntiating EvohomeClient
  • gerneric Exceptions have changed... requests.ConnectionError becomes: aiohttp.ClientConnectionError requests.HTTPError becomes aiohttp.ClientResponseError
  • but in most case, exceptions are no longer generic (since 0.4.0)... RateLimitExceeded, and AuthenticationFailed (among others)

For the older evohome API (evohomeclient):

  • import evohomeasync instead of import evohomeclient
  • Exceptions change similar to the above

Other minor changes:

  • some attrs/methods have been renamed (invoking the old name will advise the new name)
  • Hotwater.zoneId is deprecated (can use .dhwId, or _id)
  • ZoneBase.zone_type is deprecated (use .TYPE))
  • some sentinel values are now None

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

evohome_async-0.4.20.tar.gz (82.8 kB view details)

Uploaded Source

Built Distribution

evohome_async-0.4.20-py3-none-any.whl (49.9 kB view details)

Uploaded Python 3

File details

Details for the file evohome_async-0.4.20.tar.gz.

File metadata

  • Download URL: evohome_async-0.4.20.tar.gz
  • Upload date:
  • Size: 82.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.27.0

File hashes

Hashes for evohome_async-0.4.20.tar.gz
Algorithm Hash digest
SHA256 021988baa2761335223c888a2cd4f4e9fd2eb5cc97a944cf5d2bab8b2c66af57
MD5 0544bd59408d85f05cf2cce580667b2a
BLAKE2b-256 101678fc260f3f8af5fded8a321eaeb09c7a9e21f54ab5bcc8ddd674a93f905b

See more details on using hashes here.

Provenance

File details

Details for the file evohome_async-0.4.20-py3-none-any.whl.

File metadata

File hashes

Hashes for evohome_async-0.4.20-py3-none-any.whl
Algorithm Hash digest
SHA256 64c674f4686bb06befc7935d28e61ab5edb8f706a70f23b580486a3bab2924e0
MD5 37843a42b7299371f86c7b50980b4b98
BLAKE2b-256 bfdd23f94333213323fd6319a63f7def0055168f595b864b3f55177c2a4a9516

See more details on using hashes here.

Provenance

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