Python IMDbPY - 从系列 id 获取系列详细信息
在本文中,我们将了解如何从 IMDb 数据库中获取剧集详细信息,因为在 IMDb 网站上,每部电视剧以及电视剧的每一集都被视为常规标题,就像电影一样。
In order do this we have to do the following –
1. With the help of get_movie method get the series details from the code
2. Save this movie object in variable
3. Access this movie object similar to the dictionary
4. Print the required result
下面是实现
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_]