openweather-rs

This crate will retrieve the current weather from openweathermap.org and return the data as the OpenWeather type.

Usage

```rust extern crate openweatherrs; use openweatherrs::get_weather;

[tokio::main]

async fn main() -> Result<(), Box> { getweather("APIKEY".tostring(), "24504".tostring()).await?; Ok(()) } ```