openlibrary-rs 0.3.1

A wrapper around openlibrary's Web API.
Documentation
1
2
3
4
5
6
7
use openlibrary_rs::{authors::AuthorsBuilder, OpenlibraryRequest};

fn main() {
    let authors = AuthorsBuilder::default().id("OL23919A").build().unwrap();

    println!("{:#?}", authors.execute());
}