A Golang SDK client to access the available open data from data.gov.gr, provided by the Greek government.
First you need to obtain an API Token to access and use the web services of the data.gov.gr developer network. You can get one here.
$ go get github.com/chanioxaris/go-datagovgr
The client supports the following endpoints derived by topic:
- Business and Economy
- Crime and Justice
- Education
- Environment
- Health
- Society
- Technology
- Telecommunications
package main
import (
"github.com/chanioxaris/go-datagovgr/datagovgr"
)
const token = "<YOUR_API_TOKEN>"
func main() {
c, err := datagovgr.NewClient(token)
if err != nil {
// Handle error
}
// Retrieve and access data
...
}
go-datagovgr is MIT licensed.