rustnao 0.3.4

A Rust implementation of a wrapper for the SauceNAO API.
Documentation
//! A simple example with a local file

use rustnao::{HandlerBuilder, Sauce};

fn main() {
    let data = std::fs::read_to_string("config.json").expect("Couldn't read file.");
    let json: serde_json::Value =
        serde_json::from_str(data.as_str()).expect("JSON not well formatted.");
    let api_key = json["api_key"].as_str();
    let file = "./examples/local/test.jpg";

    if let Some(key) = api_key {
        let handle = HandlerBuilder::default().api_key(key).build();
        let result: Vec<Sauce> = handle.get_sauce(file, None, None).unwrap();
        for i in result {
            println!("{:?}", i);
        }
    }
}