Monsoon is a library for accessing weather data produced by The Norwegian Meteorological Institute. Most notably, this data is used on Yr.no.
```rust let monsoon = Monsoon::new("test.com support@test.com")?;
// Prague let response = monsoon.get(50.0880, 14.4207).await?; let body = response.body()?; ```