Python IMDbPY - 使用人员 ID 检索人员
在本文中,我们将了解如何使用人员 ID 检索人员的数据,人员 ID 是 IMDb 赋予每个人的唯一 ID。我们可以使用search_person
方法按姓名搜索人员,但它会给出很多人,因为他们有相同的姓名,因此通过 id 检索人员是更好的选择。
为了通过 id 搜索一个人,我们使用get_person
方法。
Syntax : imdb_object.get_person(id)
Argument : It takes string as argument which is person id
Return : It returns imdb Person object.
下面是实现。
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# ID
code = "4731677"
# searching the Id
search = ia.get_person(code)
# printing the search
print(search)
输出 :
Ayushmann Khurrana
另一个例子
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# ID
code = "2690647"
# searching the Id
search = ia.get_person(code)
# printing the search
print(search)
输出 :
Pankaj Tripathi