I have an episode-id and from this I want to derive the series. How can I do that?
This is what I tried:
ia = IMDb()
movie = ia.get_movie(id)
if movie['kind'] == "episode":
series = movie['episode of']
print(series)
This gives me only the series title, allthough the documentation says, 'episode of' gives in addition the id of the series.