From 004c8f6c5f0038d83d1f6c37c25cd3974a506c90 Mon Sep 17 00:00:00 2001 From: Lomion Date: Mon, 22 Jun 2020 21:20:55 +0200 Subject: [PATCH] Cleanup --- tmdb/tmdb_api.py | 7 ------- 1 file changed, 7 deletions(-) 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)