Author: Holger Brandl
This library provides a java-wrapper around the json API provided by TheMovieDB.org API, which is an open database for movie and film content.
The wrapper implements all methods as detailed out in the tmdb api doc.
However, as the TheMovieDB API is subject to constant change, feel welcome to point out missing bits, and we'll add them asap.
TmdbMovies movies = new TmdbApi("<apikey>").getMovies();
MovieDb movie = movies.getMovie(5353, "en");
This project uses SLF4J to abstract the logging in the project.
To use the logging in your own project you should add one of their adapters bindings.
The library was developed for Movito to interact with tmdb services. '
This library has been inspired by api-themoviedb but has been rewritten to provide a more open license, a more clean API and to expose more features of the TMDB json api.