📜  Python IMDbPY - 使用人员 ID 检索人员

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

Python IMDbPY - 使用人员 ID 检索人员

在本文中,我们将了解如何使用人员 ID 检索人员的数据,人员 ID 是 IMDb 赋予每个人的唯一 ID。我们可以使用search_person方法按姓名搜索人员,但它会给出很多人,因为他们有相同的姓名,因此通过 id 检索人员是更好的选择。

为了通过 id 搜索一个人,我们使用get_person方法。

下面是实现。

# 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