Skip to content

patpicos/go-tvmaze

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-tvmaze

GoDoc Go Report Card Build Status Coverage Status MIT license

TVMaze API bindings for Go (golang)

Documentation

GoDoc

Features

  • Search shows by name, TVMaze ID, TVDB ID, or TVRage ID
  • Get episodes for a show
  • Get the next episode for a show

Installation

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"

Library Usage

show, _ := tvmaze.DefaultClient.GetShowWithID("315") // Archer
episode, _ := c.GetNextEpisode(show)

Contributing

Pull requests welcome.