openlibrary-rs 0.3.1

A wrapper around openlibrary's Web API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use openlibrary_rs::{books::BooksGenericBuilder, OpenlibraryRequest};

fn main() {
    let books_generic = BooksGenericBuilder::default()
        .bibkeys(vec![
            "ISBN:0201558025".to_string(),
            "LCCN:93005405".to_string(),
        ])
        .build()
        .unwrap();

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