Gocountry
July 10, 2015 ยท View on GitHub
This is a Go wrapper library around the API provided by Restcountries.
Installation
Just go with
go get github.com/alediaferia/gocountries
Example Usage
package main
import (
"fmt"
"github.com/alediaferia/gocountries"
)
func main() {
countries, err := gocountries.CountriesByName("italy")
if err == nil {
country := (countries)[0]
fmt.Println(fmt.Sprintf("The capital of Italy is %s", country.Capital))
}
}
Contribution
Please, feel free to contribute to this project.
The following branches are currently active:
master: this is the stable branch which reflects the latest releasedevelop: this is where the magic happens :)
Additionally, I'd suggest you to create a hotfix/
Thank you for your contributions in advance.
License
This library is provided with a MIT License.