📜  Python IMDbPY – 信息设置为 Person 对象的键

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

Python IMDbPY – 信息设置为 Person 对象的键

在本文中,我们将看到如何将信息集转换为键,我们可以通过get_person_infoset知道电影的信息集,但是即使在获取信息集后我们也无法像字典一样使用。

为了将信息集用作字典键,我们必须使用infoset2keys方法。

下面是实现

# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# ID
code = "4731677"
    
# searching the Id and getting info set
person = ia.get_person(code, info =['biography'])
  
# making infoset to use as keys
person.infoset2keys
  
# printing bio graphy
print(person['biography'])

输出 :

另一个例子

# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# ID
code = "2690647"
    
# searching the Id and getting info set
person = ia.get_person(code, info =['filmography'])
  
# making infoset to use as keys
person.infoset2keys
  
# printing filmo graphy
print(person['filmography'])

输出 :

[{'actor': [Movie id:11261278[http] title:_Romeo (2020)_.......(2018)_]}]