#async-client #day #astronomy #picture #api-client #date #nasa

apod_async_client

apod-async-client is a crate providing a simple client for NASA Astronomy Picture of the Day

3 unstable releases

0.2.0 Mar 6, 2021
0.1.1 Apr 12, 2020
0.1.0 Nov 16, 2019

#4 in #picture

50 downloads per month

MIT license

11KB
184 lines

apod-async-client

Apod async client crate Apod async client documentation Apod async client travis

apod-async-client is a crate providing a simple client for NASA "Astronomy Picture of the Day" API.

The client is based on reqwest and tokio, and requires the tokio reactor to be setup in your application.

use apod_async_client::{APODClient, APODClientError, Date};
use std::error::Error;

#[tokio::main]
async fn main() -> Result<(), APODClientError> {
    let client = APODClient::new("DEMO_KEY");
    let (metadata, rate_limit) = client.get_picture(&Date::Today, true).await?;
    Ok(())
}

This crate is quite simple, but allowed me to exercise the following points :

  • Learn about Rust asynchronous IO, async/await and futures management
  • Practice error design in a Rust library, using thiserror
  • Practice HTTP mocking using mockito, tests and documentation in Rust.

Dependencies

~4–17MB
~248K SLoC