|
||
---|---|---|
.gitignore | ||
.travis.yml | ||
README.md | ||
api_methods.go | ||
api_types.go | ||
api_url.go | ||
client.go | ||
event_types.go | ||
event_types_test.go | ||
example_test.go | ||
req_fixture.go | ||
req_fixtures.go | ||
req_soccerseason.go | ||
req_soccerseason_fixtures.go | ||
req_soccerseason_leaguetable.go | ||
req_soccerseason_teams.go | ||
req_soccerseasons.go | ||
req_team.go | ||
req_team_fixtures.go | ||
req_team_players.go | ||
response_meta.go | ||
util.go | ||
util_test.go |
README.md
Football-Data API for Golang
This library provides functionality to communicate with the API provided by http://football-api.org. This way programs can use data provided by the API in order to show information about football/soccer games from various seasons for free.
How to use this library?
Before you use this library please register for a free API key in order to increase your usage limits. The library also works without an API key.
You can install this library by running:
go get github.com/icedream/go-footballdata
Afterwards you can use this library like this:
package main
import (
"fmt"
"net/http"
"github.com/icedream/go-footballdata"
)
func main() {
// Create client
client := footballdata.NewClient(http.DefaultClient)
// Tell it to use our API token
client.AuthToken = "<insert your api token here>"
// Get list of seasons...
seasons, err := client.SoccerSeasons().Do()
if err != nil {
panic(err)
}
// ...and print them
for _, season := range seasons {
fmt.Println(season.Id, season.Caption)
}
}