diff --git a/tmdb/tmdb_api.py b/tmdb/tmdb_api.py index 2501bfa..c6a82a4 100644 --- a/tmdb/tmdb_api.py +++ b/tmdb/tmdb_api.py @@ -83,10 +83,3 @@ class Movie(Connection): def get_cast(self, amount): return self.cast[:amount] -movie = Movie() -#movie.query_details('550') -movie.search_title('Jack Reacher') -print(movie.title) -print(movie.overview[:150]) -print(movie.web_url) -print(movie.poster_url)