openlibrary-rs 0.2.0

A wrapper around openlibrary's Web API.
Documentation
1
2
3
4
5
6
7
8
9
10
use openlibrary_rs::search::SearchBuilder;

fn main() {
    let search = SearchBuilder::default()
        .query("the lord of the rings")
        .build()
        .unwrap();

    println!("{:#?}", search.execute().docs[0]);
}