📜  Python IMDbPY - 将信息集添加到搜索的电影

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

Python IMDbPY - 将信息集添加到搜索的电影

在本文中,我们将看到如何将信息集添加到搜索的电影中,搜索电影检索固定的数据集并且没有信息集的概念。因此,电影对象的信息将比默认信息集更少。例如,如果您使用搜索方法,则结果中的电影对象不会有许多电影获取方法中可用的键。

为了将信息集添加到搜索到的电影中,我们将使用update方法。

下面是实现——

# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# name
name = "3 idiots"
    
# searching the name
movies = ia.search_movie(name)
  
movie = movies[0]
  
# getting more information
ia.update(movie, info = ['taglines'])
  
  
# printing tagline
print(movie['taglines'])

输出 :

["Don't be Stupid. Be an I.D.I.O.T."]

另一个例子

# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# name
name = "Success story"
    
# searching the name
movies = ia.search_movie(name)
  
movie = movies[0]
  
# getting more information
ia.update(movie, info = ['plot'])
  
  
# printing plot
print(movie['plot'])

输出 :