def get_actor_movieography(self, actor_id): """ Get the movieography of the actor.
Returns: list: List of movies """ response = requests.get( f"{self.base_url}/person/{actor_id}/movie_credits", params={"api_key": self.api_key}, ) data = response.json() movies = data["cast"] return movies
In an era where the lines between regional and national cinema are blurring, Siddharth was a pioneer of the crossover long before it became a trend. He never chased the "hero" archetype blindly; instead, he sought characters that resonated.
def get_actor_movieography(self, actor_id): """ Get the movieography of the actor.
Returns: list: List of movies """ response = requests.get( f"{self.base_url}/person/{actor_id}/movie_credits", params={"api_key": self.api_key}, ) data = response.json() movies = data["cast"] return movies
In an era where the lines between regional and national cinema are blurring, Siddharth was a pioneer of the crossover long before it became a trend. He never chased the "hero" archetype blindly; instead, he sought characters that resonated.