This commit is contained in:
Alhaziel01
2020-05-27 16:38:48 +02:00
parent cd0c280cb5
commit bf1ce6c67b
+17 -17
View File
@@ -1247,13 +1247,13 @@ class Tmdb(object):
def get_temporada(self, numtemporada=1): def get_temporada(self, numtemporada=1):
# -------------------------------------------------------------------------------------------------------------------------------------------- # --------------------------------------------------------------------------------------------------------------------------------------------
# Parameters: # Parameters:
        # season number: (int) Season number. Default 1. # season number: (int) Season number. Default 1.
        # Return: (Dec) # Return: (Dec)
        # Returns a dictionary with data about the season. # Returns a dictionary with data about the season.
        # You can get more information about the returned data at: # You can get more information about the returned data at:
        # http://docs.themoviedb.apiary.io/#reference/tv-seasons/tvidseasonseasonnumber/get # http://docs.themoviedb.apiary.io/#reference/tv-seasons/tvidseasonseasonnumber/get
        # http://docs.themoviedb.apiary.io/#reference/tv-seasons/tvidseasonseasonnumbercredits/get # http://docs.themoviedb.apiary.io/#reference/tv-seasons/tvidseasonseasonnumbercredits/get
# -------------------------------------------------------------------------------------------------------------------------------------------- # --------------------------------------------------------------------------------------------------------------------------------------------
if not self.result["id"] or self.busqueda_tipo != "tv": if not self.result["id"] or self.busqueda_tipo != "tv":
return {} return {}
@@ -1294,16 +1294,16 @@ class Tmdb(object):
def get_episodio(self, numtemporada=1, capitulo=1): def get_episodio(self, numtemporada=1, capitulo=1):
# -------------------------------------------------------------------------------------------------------------------------------------------- # --------------------------------------------------------------------------------------------------------------------------------------------
# Parameters: # Parameters:
        # season number (optional): (int) Season number. Default 1. # season number (optional): (int) Season number. Default 1.
        # chapter: (int) Chapter number. Default 1. # chapter: (int) Chapter number. Default 1.
        # Return: (Dec) # Return: (Dec)
        # Returns a dictionary with the following elements: # Returns a dictionary with the following elements:
        # "season_name", "season_synopsis", "season_poster", "season_num_ episodes" (int), # "season_name", "season_synopsis", "season_poster", "season_num_ episodes" (int),
        # "season_air_date", "episode_vote_count", "episode_vote_average", # "season_air_date", "episode_vote_count", "episode_vote_average",
        # "episode_title", "episode_synopsis", "episode_image", "episode_air_date", # "episode_title", "episode_synopsis", "episode_image", "episode_air_date",
        # "episode_crew" and "episode_guest_stars", # "episode_crew" and "episode_guest_stars",
        # With chapter == -1 the dictionary will only have the elements referring to the season # With chapter == -1 the dictionary will only have the elements referring to the season
# -------------------------------------------------------------------------------------------------------------------------------------------- # --------------------------------------------------------------------------------------------------------------------------------------------
if not self.result["id"] or self.busqueda_tipo != "tv": if not self.result["id"] or self.busqueda_tipo != "tv":
return {} return {}