import WeatherApi
import WeatherApi.Google
> let h = mkWeatherHandler $ initApi "key"
> getWeather h "moscow"
Right (Weather {tempF = 75.0, tempC = 24.0, humidity = "Humidity: 25%", windCondition = "Wind: S at 16 mph", condition = "Clear"})
> getWeather' (initApi "key") "moscow"
Right (Weather {tempF = 75.0, tempC = 24.0, humidity = "Humidity: 25%", windCondition = "Wind: S at 16 mph", condition = "Clear"})