10 unstable releases (3 breaking)
0.4.3 | Apr 15, 2019 |
---|---|
0.4.2 | Apr 13, 2019 |
0.4.0 | Mar 29, 2019 |
0.3.1 | Jan 7, 2019 |
0.1.2 | Jan 20, 2018 |
#48 in #crawler
Used in backslash-z
21KB
313 lines
airkorea-rs
Airkorea Crawler written in Rust.
Usage
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);
println!("Time: {}", status.time);
for pollutant in status {
println!("{}", pollutant);
}
Testing
You can override Airkorea Url for mock testing.
If you want to write unit tests for some functions using airkorea,
just set AIRKOREA_URL
environment variable to desired mock server.
spawn_server("localhost:1234");
std::env::set_var("AIRKOREA_URL", "http://localhost:1234");
let status = rt.block_on(airkorea::search(123.123, 456.456)).unwrap();
assert_eq!(&status.station_address, "Foobar Station");
Dependencies
~25MB
~525K SLoC