📜  Python IMDbPY - 从系列 id 获取系列详细信息

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

Python IMDbPY - 从系列 id 获取系列详细信息

在本文中,我们将了解如何从 IMDb 数据库中获取剧集详细信息,因为在 IMDb 网站上,每部电视剧以及电视剧的每一集都被视为常规标题,就像电影一样。

下面是实现

Python3
# importing the module
import imdb
 
# creating instance of IMDb
ia = imdb.IMDb()
 
# id
code = "6473300"
 
# getting information
series = ia.get_movie(code)
 
# printing title
print(series.data['title'])
 
# printing writer name
print(series.data['writer'])


Python3
# importing the module
import imdb
 
# creating instance of IMDb
ia = imdb.IMDb()
 
# id
code = "6077448"
 
# getting information
series = ia.get_movie(code)
 
# printing title
print(series.data['title'])
 
# printing writer name
print(series.data['writer'])


输出 :

Mirzapur
[Person id:5883328[http] name:_Karan Anshuman_, Person id:4107081[http] name:_Puneet Krishna_, Person id:10172949[http] name:_Vineet Krishna_]

另一个例子

Python3

# importing the module
import imdb
 
# creating instance of IMDb
ia = imdb.IMDb()
 
# id
code = "6077448"
 
# getting information
series = ia.get_movie(code)
 
# printing title
print(series.data['title'])
 
# printing writer name
print(series.data['writer'])

输出 :

Sacred Games
[Person id:11351503[http] name:_Abhishek Chaudhary_, Person id:3542598[http] name:_Varun Grover_, Person id:0151512[http] name:_Vikram Chandra_]