openlibrary-rs 0.1.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 results = SearchBuilder::default()
        .query("the lord of the rings")
        .build()
        .unwrap();

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