You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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'
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
The text was updated successfully, but these errors were encountered: