World Bank Open data API for Go
Find and request information from the World Bank Open Data API http://data.worldbank.org/
import "github.com/johnwesonga/wbdata"Construct a new Wbdata client, then use the various services on the client to access different parts of the World Bank Open Data API. For example, to list all countries:
client := wbdata.NewClient(nil)
countries, err := client.Countries.ListCountries()