3 releases (stable)

1.1.0 Apr 1, 2024
1.0.0 Apr 1, 2024
0.1.0 Feb 24, 2024

#581 in Web programming

Download history 152/week @ 2024-02-24 14/week @ 2024-03-02 2/week @ 2024-03-09 6/week @ 2024-03-16 3/week @ 2024-03-23 270/week @ 2024-03-30 43/week @ 2024-04-06

322 downloads per month

Apache-2.0

25KB
610 lines

tado

Crates.io

The tado crate provides bindings and methods for utilizing the (unofficial) Tado API in Rust.

  • Built on reqwest for HTTP requests
  • Utilizes tokio for asynchronous operations
  • Implements oauth2 for handling authentication
  • Supports chrono types for managing dates and timezones
  • Get/Set methods do not require mutability
  • Designed for use in concurrent environments
  • Maintains a small dependency tree

We aim to offer the most comprehensive bindings available on the web, incorporating types and requests from various open-source contributors. A special thanks to all those who have contributed to this effort.

Examples

Basic usage

use tado::{Auth, Client, Configuration};

#[tokio::main]
async fn main() {
    let client = Client::new(Configuration {
        auth: Auth {
            username: "x".to_string(),
            password: "x".to_string(),
        },
    });

    // Try authentication and fetch current user
    let _ = client.login().await;

    // Fetch basic entities
    let me = client.get_me().await.unwrap();
    let home = client.get_home().await.unwrap();
    let zones = client.get_zones().await.unwrap();

    // Show HI on device
    let _ = client
        .set_identify(&zones[0].devices[0].serial_no)
        .await
        .unwrap();
}

Collaborating

While we strive to provide the latest bindings available, our ability to do so is limited by the hardware at our disposal. As a result, some types may be incomplete or entirely missing in version 1.x.

We welcome contributions from the community. If you find areas for improvement or wish to propose changes, please feel free to open a pull request (PR). Your contributions are greatly appreciated.

License

This project is licensed under the Apache 2.0 license.

Special thanks

Dependencies

~9–24MB
~347K SLoC