Simple AlchemyAPI client for Go.
apiKey := "your api key"
config := alchemyapi.NewConfig(apiKey)
client := alchemyapi.New(config)
url := "http://www.dailymail.co.uk/sciencetech/article-2355833/Apples-iPhone-5-hated-handset--majority-people-love-Samsung-Galaxy-S4-study-finds.html"
input := client.NewURLGetRankedNamedEntitiesInput(url)
output, _ := client.URLGetRankedNamedEntities(input)
To manually run tests use your api key:
$ export ALCHEMYAPI_API_KEY=<your api key>
$ go test -v
MIT