Hass-Rs

A simple async Rust client library for interacting with Home Assistant websocket API.

Configure:

hass-rs supports tokio and async-std runtimes, by default it uses async-std, to use tokio change the feature flags in Cargo.toml

with async-std support

toml [dependencies] hass-rs = { version = "0.2", features = ["async-std-runtime"] }

with tokio support

toml [dependencies] hass-rs = { version = "0.2", features = ["tokio-runtime"] }

Example usage

```rust use envlogger; use hassrs::client; use lazystatic::lazystatic; use std::env::var;

lazystatic! { static ref TOKEN: String = var("HASSTOKEN").expect("please set up the HASS_TOKEN env variable before running this"); }

[cfgattr(feature = "async-std-runtime", asyncstd::main)]

async fn main() -> Result<(), Box> { env_logger::init();

println!("Creating the Websocket Client and Authenticate the session");
let mut client = client::connect("localhost", 8123).await?;

client.auth_with_longlivedtoken(&*TOKEN).await?;
println!("WebSocket connection and authethication works");

println!("Get Hass Config");
match client.get_config().await {
    Ok(v) => println!("{:?}", v),
    Err(err) => println!("Oh no, an error: {}", err),
}
Ok(())

} ```

Test environment

Use docker to easily bootstrap a test environment.

Steps:

bash $ docker run -d --name="home-assistant" -v /PATH_TO_YOUR_CONFIG:/config -v /etc/localtime:/etc/localtime:ro --net=host homeassistant/home-assistant:stable

API reference

Development status