5 releases

0.1.4 Jul 18, 2024
0.1.3 Jul 18, 2024
0.1.2 Jun 22, 2024
0.1.1 Jun 20, 2024
0.1.0 Jun 20, 2024

#344 in Hardware support

31 downloads per month

MIT license

16KB
379 lines

GitHub last commit GitHub closed issues GitHub contributors GitHub commit activity

LibreLink Client

Welcome to the LibreLink Client project. This project is a Rust library that provides an interface for interacting with the LibreLink API, a platform that allows users to monitor and manage their glucose levels.

With LibreLink Client, you can easily retrieve glucose data, manage connections, and much more, all directly from your Rust code. Whether you're building a healthcare application, a research tool, or simply want to explore your own glucose data, LibreLink Client is here to help.

Installation

Quick Start

$ cargo add librelink-client

Initialization

There are two ways to initialise the LibreLink client:

  • From credentials
  • From a token
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
  let client = LibreLinkClient::from_token(token);

  let data = client.get_glucose_history(2,3).await?;

  Ok(())
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let client = LibreLinkClient::new(Credentials {
      username: "username".to_string(),
      password: "password".to_string(),
    }).await;

    if let Ok(client) = client {
      let _ = client.get_glucose_history(2, 3).await?;
    }

    Ok(())
}

The creation of the client from credentials is asynchronous because the client must make an API call to retrieve the token that is required for the rest of the use of the LibreLinkClient.

Documentation

Checkout our documentation crates.io.

Dependencies

~6–17MB
~225K SLoC