airkorea 0.3.1

Limitless Airkorea API wrapper
airkorea-0.3.1 doesn't have any documentation.

airkorea-rs

circleci crate.io docs.rs License: MIT License: Apache-2.0

Limitless Airkorea API wrapper written in Rust.

use {airkorea, futures::prelude::*, tokio::runtime::Runtime};

let mut rt = Runtime::new();
let status = rt.block_on(airkorea::search(lng, lat))?;
println!("Station address: {}", status.station_address);
for pollutant in status {
    println!("{}", pollutant);
}