📜  Python IMDbPY – 获取系列的流派

📅  最后修改于: 2022-05-13 01:54:56.929000             🧑  作者: Mango

Python IMDbPY – 获取系列的流派

在本文中,我们将看到如何获得系列的类型,类型基本上是划分系列的类别,例如浪漫、戏剧、动作等。

下面是实现

# 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']