This crate will retrieve the current weather from openweathermap.org and return the data as the OpenWeather type.
```rust extern crate openweatherrs; use openweatherrs::get_weather;
async fn main() -> Result<(), Box> { getweather("APIKEY".tostring(), "24504".tostring()).await?; Ok(()) } ```