Python IMDbPY – Person 对象的默认信息
在本文中,我们将看到如何实现通过get_person
方法默认检索到的信息集,在get_person_infoset
的帮助下,我们可以了解我们可以获取的人的所有信息。但是没有提取所有信息,因为这将是一个耗时的过程。
为了知道电影对象提取的默认信息,我们将使用default_info
方法。
Syntax : person.default_info
Here movie is imdb Person object
Argument : It takes no argument
Return : It return list
下面是实现
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# ID
code = "2690647"
# searching the Id
person = ia.get_person(code)
# getting default info
info = person.default_info
# printing name
print(person['name'])
# printing the info
print(info)
输出 :
Pankaj Tripathi
('main', 'filmography', 'biography')
另一个例子
# importing movie
from imdb.Person import Person
# getting default info
info = Person.default_info
# printing the info
print(info)
输出 :
('main', 'filmography', 'biography')