tmdbv3api icon indicating copy to clipboard operation
tmdbv3api copied to clipboard

Different result api to site

Open Bobsilvio opened this issue 1 year ago • 0 comments

i have a different result to popular tv show, https://www.themoviedb.org/tv?language=it-IT Screenshot 2024-02-23 alle 18 56 23

and api

from tmdbv3api import TMDb, Movie, TV, Season, Person, Discover tmdb = TMDb() tmdb.api_key = 'xxxx' tmdb.language = 'it-IT' tmdb.debug = True max_pages= 4 movie = Movie() tv = TV() person = Person()

page=1 popular = tv.popular(page=int(page)) for popular_item in popular: title = popular_item['name'] print(title)

result: The Kelly Clarkson Show The Tonight Show Starring Jimmy Fallon Un si grand soleil Mannix Tomorrow Is Ours - Il domani è nostro The Jennifer Hudson Show Suidooster The Daily Show Binnelanders Ulice Good Mythical Morning 위대한 수업, 그레이트 마인즈 Prostřeno! The Tonight Show Starring Johnny Carson 우당탕탕 패밀리 Halo 南来北往 Il Santo Flor Sem Tempo Sherri

Bobsilvio avatar Feb 23 '24 17:02 Bobsilvio