tmdbv3api
tmdbv3api copied to clipboard
A lightweight Python library for The Movie Database (TMDb) API. The TMDb API is a resource for developers to integrate movie, TV show and cast data along with posters or movie fan art.
Hi , I'm sorry this is not an issue but I don't know how to ask How to search with a single request movies and tv ? Sometimes I don't...
when I get movie or season info, how do I get all the information about the Top Billed Cast of each movie
I've added every API endpoint in the [Docs](https://developers.themoviedb.org/3) and updated the call method and obj method all into one so every call should always be done with `self._request_obj()` I don't...
Could you add the episode group endpoint? https://developers.themoviedb.org/3/tv-episode-groups/get-tv-episode-group-details I tried something in the tv.py, but not sure if it meets the requirements. ``` _urls = { "details": "/tv/%s", "episode_group": "/tv/episode_group/%s",...
for example I tried that : ```py showEpisode = Episode() episodeInfo = showEpisode.details("71728", "1", "19") ``` and it return me an error, but when i go to : https://api.themoviedb.org/3/tv/71728/season/1/episode/19?api_key={api_key}&language=fr&page=1 it...
Hi, I'm facing the same issue that #19. If I define the language in a python script ``` tmdb = TMDb() tmdb.api_key = 'XXXXXX' tmdb.language = 'fr' tmdb.debug = True...
i have a different result to popular tv show, https://www.themoviedb.org/tv?language=it-IT and api from tmdbv3api import TMDb, Movie, TV, Season, Person, Discover tmdb = TMDb() tmdb.api_key = 'xxxx' tmdb.language = 'it-IT'...
  ```py from tmdbv3api.exceptions import TMDbException from tmdbv3api import TMDb, Movie from lib.Globals import tmdb_api_key import time def scrape_from_tmdb_popular(max_pages=500): tmdb = TMDb() tmdb.api_key = tmdb_api_key tmdb_movie = Movie() while...
TypeError Traceback (most recent call last) Cell In[188], line 1, in (x) ----> 1 df['genres'] = df['Title'].map(lambda x: get_genre(str(x))) Cell In[186], line 7, in get_genre(x) 5 result = tmdb_movie.search(x) 6...