'''
This file is part of tmdb-bot.
tmdb-bot is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License version 3 as published by
the Free Software Foundation.
tmdb-bot is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with tmdb-bot. If not, see
{str(id)} - {escape(element['title'])} - {str(int(element['vote_average']*10))}%
""" id += 1 return html def getListText(self, length: int = None) -> str: text = "" if length: loop = length else: loop = self.length for element in self.list[:loop]: text += element['title'] return text async def getMovieByNumber(self, number): movie = Movie() await movie.load_parameters() movie.base_url_poster = self.base_url_poster item = self.list[int(number) - 1] await movie.setData(item) return movie class Movie(TmdbApiSingle): def __init__(self): super().__init__() async def setData(self, data): self.title = data['title'] if not self.title: self.valid = False self.id = data['id'] self.poster_url = self.base_url_poster + data['poster_path'] self.overview = data['overview'] self.web_url = 'https://www.themoviedb.org/movie/' + str(self.id) self.vote_average = data['vote_average'] await asyncio.gather( self.query_cast(self.id), self.query_image_binary()) return self.id async def search_title(self, title: str, year: int = None) -> int: payload = {} payload['query'] = title if year: payload['year'] = year json = await self.request('search/movie', params=payload) if json['total_results'] > 0: movie_id = json['results'][0]['id'] await self.query_details(movie_id) await asyncio.gather( self.query_cast(movie_id), self.query_image_binary()) return movie_id else: self.valid = False return None async def query_details(self, id): data = await self.request('movie/' + str(id)) self.title = data['title'] if not self.title: self.valid = False self.id = data['id'] self.poster_url = self.base_url_poster + data['poster_path'] self.overview = data['overview'] self.web_url = 'https://www.themoviedb.org/movie/' + str(self.id) self.vote_average = data['vote_average'] async def query_cast(self, id): data = await self.request('movie/' + str(id) + '/credits') self.cast = [] for actor in data['cast']: self.cast.append(actor['name']) def get_cast(self, amount): return self.cast[:amount] class TvShow(TmdbApiSingle): def __init__(self): super().__init__() async def search_title(self, title, year: int = 0): payload = {} payload['query'] = title if year: payload['first_air_date_year'] = str(year) json = await self.request('/search/tv', params=payload) if json['total_results'] > 0: movie_id = json['results'][0]['id'] await self.query_details(movie_id) await asyncio.gather( self.query_cast(), self.query_image_binary()) return movie_id else: self.valid = False return None async def query_details(self, id): data = await self.request('tv/' + str(id)) self.title = data['name'] if not self.title: self.valid = False self.id = data['id'] self.poster_url = self.base_url_poster + data['poster_path'] self.overview = data['overview'] self.web_url = 'https://www.themoviedb.org/tv/' + str(self.id) self.vote_average = data['vote_average'] async def query_cast(self): data = await self.request('tv/' + str(self.id) + '/credits') self.cast = [] for actor in data['cast']: self.cast.append(actor['name']) def get_cast(self, amount): return self.cast[:amount]