Forked from: https://github.com/dkorunic/gomdb with some updates.
Find a file
Ernesto Cedeño 71b0bf6972 Merge pull request #9 from pyed/master
add tomatoURL to MovieResult
2016-02-12 20:14:15 -05:00
gomdb.go add tomatoURL 2016-02-09 00:00:13 +03:00
gomdb_test.go changin names 2015-07-17 16:16:57 -04:00
LICENSE unit tests added 2015-06-26 13:36:33 -04:00
README.md update methods names 2016-02-08 15:23:44 +03:00

The Golang Omdb API

Author: Christopher T. Herrera (eefretsoul AT gmail DOT com)

This API uses the omdbapi.com API by Brian Fritz


OMDBAPI.com

This is an excellent open database for movie and film content.

I strongly encourage you to check it out and contribute to keep it growing.

http://www.omdbapi.com


Project Usage

The API usage is very simple. Just import the go-imdb package

import (
	imdb "github.com/eefret/go-imdb"
)

And use any of the methods

res, err := imdb.Search("The fifth element", "")
res2, err := imdb.MovieByTitle("True Grit", "1969")
res3, err := imdb.MovieByImdbID("tt2015381")

See the project documentation to see the Response Objects and stuff

Project Documentation

The automatically generated documentation can be found in godocs. GoDoc