rustnao 0.3.4

A Rust implementation of a wrapper for the SauceNAO API.
Documentation
//! Similar to the simple example, except now we only want to get results from Pixiv

use rustnao::{Handler, 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 = "https://i.imgur.com/W42kkKS.jpg";

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