lunoapisdk

SDK in Rust for accessing the Luno exchange API.

This is an unofficial Rust API Wrapper for accessing the Luno Exchange API. Please read the License.

supported methods: (last updated: 17-08-2020)

```rust use lunosdk::LunoClient; use lunosdk::Market;

[tokio::main]

async fn main() -> Result<(), Box> {

let luno_client = LunoClient::new("api_key_id", "api_key_secret");

let resp = luno_client.get_ticker("XBTEUR");
println!("received reponse: {}", resp.await?.text().await?);

Ok(())

} ```