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

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

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

在本文中,我们将了解如何将信息集添加到搜索到的人。搜索人检索固定的数据集,没有信息集的概念。因此,person 对象的信息将比默认信息集更少。例如,如果您使用搜索方法,则结果中的 person 对象将没有许多在 person get 方法上可用的键。

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

下面是实现

# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# name
name = "Amir khan"
    
# searching the name
persons = ia.search_person(name)
  
person = persons[0]
  
# getting more information
ia.update(person, info = ['biography'])
  
  
# printing biography
print(person['biography'])

输出 :

另一个例子

# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# name
name = "Robert Downey"
    
# searching the name
persons = ia.search_person(name)
  
person = persons[0]
  
# getting more information
ia.update(person, info = ['other works'])
  
  
# printing other works
print(person['other works'])

输出 :