#meter #api-access #data #smart #data-access #cli #user-name

bin+lib glowmarkt

Access to the Glowmarkt API for smart meter data

8 releases (4 breaking)

0.5.2 Jan 14, 2024
0.5.1 Nov 10, 2023
0.4.0 Sep 6, 2022
0.3.0 Sep 6, 2022
0.1.0 Aug 24, 2022

#1584 in Command line utilities

Download history 10/week @ 2024-02-26 3/week @ 2024-03-11 135/week @ 2024-04-01

138 downloads per month

MIT license

46KB
1K SLoC

Glowmarkt

Crates.io docs.rs License

A rust crate for accessing the Glowmarkt API for meter readings.

This contains two parts. A module that other programs can use for programmatic access to the API and a CLI that users can use to query for data. It was developed with the primary purpose of being able to submit meter readings to InfluxDB but along the way a number of other ways of displaying data from the API were added to the CLI.

In order to use this you need to have installed and registered your smart meters with the Bright mobile app. Then you can use the username and password you used there with this tool.

CLI Usage

The CLI should be reasonably well documented with --help.

$> cargo install glowmarkt
$> glowmarkt --username='me@somewhere.com' --password='wibble' device

Module Usage

The API is async so you must set up an async runtime such as tokio. Authenticating with a username and password will generate a token for subsequent requests.

let api = GlowmarktApi::authenticate("me@somewhere.com", "wibble").await?;
let devices = api.devices().await?;

Consult the module docs for more information.

Dependencies

~10–25MB
~374K SLoC