TVMaze API bindings for Go (golang)
- Search shows by name, TVMaze ID, TVDB ID, or TVRage ID
- Get episodes for a show
- Get the next episode for a show
To install the package, run go get github.com/mrobinsn/go-tvmaze/tvmaze
To use it in application, import "github.com/mrobinsn/go-tvmaze/tvmaze"
show, _ := tvmaze.DefaultClient.GetShowWithID("315") // Archer
episode, _ := c.GetNextEpisode(show)
Pull requests welcome.