2020-07-17 09:19:11 +02:00
2020-01-22 15:40:23 +01:00
2019-12-09 15:09:21 +01:00
2020-07-17 07:42:09 +00:00
2019-12-10 07:34:15 +01:00
2020-01-22 15:50:41 +01:00
2019-12-09 15:09:21 +01:00
2019-12-09 15:09:21 +01:00
2019-12-09 15:09:21 +01:00
2019-12-09 15:09:21 +01:00
2019-12-10 07:34:15 +01:00
2019-12-09 15:09:21 +01:00
2020-07-17 14:00:26 +02:00

Go Report Card Go Go Doc Release Gitpod Ready-to-Code

About

This Repo contains golang library to query OpenWetherMaps (http://openweathermap.org/) for weather information.

Install

go get github.com/EricNeid/openweather

Documentation

Is available on godoc:

https://godoc.org/github.com/EricNeid/go-openweather

Examples

Consuming the library:

import "github.com/EricNeid/openweather"

// create a query
q := openweather.NewQueryForCity(readAPIKey(), "Berlin,de")

// obtain data
resp, err := q.Weather()

// enjoy
fmt.Println(resp.Name) // Berlin
fmt.Println(resp.Weather[0].Description) // misc
fmt.Println(resp.Main.Temp) // 1

See the test files for more example.

A simple client for testing is also included:

go build cmd/openweatherclient
openweatherclient -key <OpenWeather API Key> -city Berlin,de
Description
No description provided
Readme MIT 42 KiB
Languages
Go 99.5%
Makefile 0.5%