13 releases

new 0.4.1 Mar 22, 2024
0.4.0 Nov 17, 2023
0.3.1 May 18, 2023
0.2.1 Mar 30, 2023
0.1.5 Aug 31, 2021

#108 in HTTP client

Download history 13/week @ 2024-02-26 457/week @ 2024-03-18

470 downloads per month
Used in solaredge-reqwest

LGPL-3.0

54KB
1.5K SLoC

solaredge

Documentation

See full documentation

Usage

Add this to your Cargo.toml:

[dependencies]
solaredge = "0.4.1"

Asynchronous SolarEdge API client for Rust

Work in progress, only basic API is implemented so far. See todo markers in client.rs for the specific missing functions.

Enables access the SolarEdge equipment API (solar panels, inverters, meters) with the nice typed Rust interface.

The library requires an HTTP client, but is client-agnostic. You can use any client that implements HttpClientAdapter trait. Check http-adapter-reqwest for an implementation based on reqwest.

Sample usage with http-adapter-reqwest:

use solaredge::{Client, SitesList, SortOrder, SiteStatus};
use http_adapter_reqwest::ReqwestAdapter;

async fn run() -> Result<(), Box<dyn std::error::Error>> {
   let client = Client::<ReqwestAdapter>::new("API_KEY");
   let version = client.version_current().await?;
   let mut p = SitesList::default();
   p.size = Some(32);
   p.sort_order = Some(SortOrder::Ascending);
   p.status = Some(&[SiteStatus::Active, SiteStatus::Pending]);
   let sites = client.sites_list(&p).await?;
   Ok(())
}

License: LGPL-3.0

Dependencies

~3.5–5MB
~124K SLoC