Merge pull request #8 from pyed/patch-1

update methods names
This commit is contained in:
Ernesto Cedeño 2016-02-12 20:07:29 -05:00
commit 1086f8017e

View file

@ -25,9 +25,9 @@ The API usage is very simple. Just import the go-imdb package
And use any of the methods And use any of the methods
res, err := imdb.SearchMovies("The fifth element", "") res, err := imdb.Search("The fifth element", "")
res2, err := imdb.GetMovieByTitle("True Grit", "1969") res2, err := imdb.MovieByTitle("True Grit", "1969")
res3, err := imdb.GetMovieByImdbId("tt2015381") res3, err := imdb.MovieByImdbID("tt2015381")
See the project documentation to see the Response Objects and stuff See the project documentation to see the Response Objects and stuff