Python IMDbPY – 获取系列的流派
在本文中,我们将看到如何获得系列的类型,类型基本上是划分系列的类别,例如浪漫、戏剧、动作等。
In order to get the genres of the movie we have to do the following –
1. Get the series details with the help of get_movie method
2. As this object will act as dictionary therefore we have to filter the object
3. Get the main data of object with the help of data method which will return dictionary
4. Get the genres details from the dictionary
下面是实现
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# id
code = "6077448"
# getting information
series = ia.get_movie(code)
# getting gerne of the series
genre = series.data['genres']
# printing the object i.e name
print(series)
# print the gerne
print(genre)
输出 :
Sacred Games
['Action', 'Crime', 'Drama', 'Thriller']
另一个例子
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# id
code = "6473300"
# getting information
series = ia.get_movie(code)
# getting gerne of the series
genre = series.data['genres']
# printing the object i.e name
print(series)
# print the gerne
print(genre)
Mirzapur
['Action', 'Crime', 'Drama', 'Thriller']