Library for interfacing with the \"AVM Home Automation\" API https://avm.de/fileadmin/user_upload/Global/Service/Schnittstellen/AHA-HTTP-Interface.pdf.
It is used by the fritzctrl utility.
```rust // Get a session id let sid = fritzapi::get_sid(&user, &password)?;
// List devices let mut devices = fritzapi::list_devices(&sid)?;
// If the first device is of, turn it on let dev = devices.firstmut().unwrap(); if !dev.ison() { dev.turn_on(&sid)?; } ```
License: MIT