update methods names

This commit is contained in:
pyed 2016-02-08 15:23:44 +03:00
parent 93ab936da7
commit 3302bb0aac

View file

@ -25,9 +25,9 @@ The API usage is very simple. Just import the go-imdb package
And use any of the methods
res, err := imdb.SearchMovies("The fifth element", "")
res2, err := imdb.GetMovieByTitle("True Grit", "1969")
res3, err := imdb.GetMovieByImdbId("tt2015381")
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