Go to file
2019-12-09 15:09:21 +01:00
cmd/openweatherclient Initial commit 2019-12-09 15:09:21 +01:00
internal/test Initial commit 2019-12-09 15:09:21 +01:00
.gitignore Initial commit 2019-12-09 15:09:21 +01:00
api_test.go Initial commit 2019-12-09 15:09:21 +01:00
api.go Initial commit 2019-12-09 15:09:21 +01:00
go.mod Initial commit 2019-12-09 15:09:21 +01:00
go.sum Initial commit 2019-12-09 15:09:21 +01:00
LICENSE Initial commit 2019-12-09 15:09:21 +01:00
Makefile Initial commit 2019-12-09 15:09:21 +01:00
model.go Initial commit 2019-12-09 15:09:21 +01:00
query_test.go Initial commit 2019-12-09 15:09:21 +01:00
query.go Initial commit 2019-12-09 15:09:21 +01:00
README.md Initial commit 2019-12-09 15:09:21 +01:00

go - openweatherapi

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/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