Python IMDbPY–从剧集信息集中获取季节

原文:https://www . geesforgeks . org/python-imdbpy-从剧集中获取季节-信息-剧集集/

在本文中,我们将看到如何从剧集中获得该系列的季节。每个系列都有季节,每个季节都有多集,即每集是季节的子集,季节是系列的子集。我们通过向剧集添加剧集信息集来获得剧集

为了做到这一点,我们必须做到以下几点–

1.借助 get_movie 方法 2 获取系列详情。使用 3 的更新方法为其添加剧集信息集。由于这个对象将作为字典,因此我们必须过滤对象 4。借助返回字典 5 的数据方法获取对象的主要数据。从字典中获取剧集,这本字典的关键词是季节

下面是实现

# importing the module
import imdb

# creating instance of IMDb
ia = imdb.IMDb()

# id
code = "6468322"

# getting information
series = ia.get_movie(code)

# adding new info set
ia.update(series, 'episodes')

# getting episodes of the series
episodes = series.data['episodes']

# printing the object i.e name
print(series)

# printing the keys of this dictionary
for i in episodes.keys():
    print(i)

输出:

Money Heist
4
1
2
3

另一个例子

# importing the module
import imdb

# creating instance of IMDb
ia = imdb.IMDb()

# id
code = "0903747"

# getting information
series = ia.get_movie(code)

# adding new info set
ia.update(series, 'episodes')

# getting episodes of the series
episodes = series.data['episodes']

# printing the object i.e name
print(series)

# printing the keys of this dictionary
for i in episodes.keys():
    print(i)

输出:

Breaking Bad
5
1
2
3
4