Python IMDbPY - 使用公司 ID 检索公司
在本文中,我们将了解如何使用公司 ID 检索公司的数据,公司 ID 是 IMDb 为每个公司提供的唯一 ID。我们可以使用search_company
方法按名称搜索公司,但它提供了许多公司,因为它们具有相同的名称,因此通过 id 检索公司是更好的选择。
为了通过 id 搜索公司,我们使用get_company
方法。
Syntax : imdb_object.get_company(id)
Argument : It takes string as argument which is company id
Return : It returns imdb Company object.
下面是实现。
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# ID
code = "0051941"
# searching the Id
search = ia.get_company(code)
# printing the search
print(search)
输出 :
Marvel Studios
另一个例子 :
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# ID
code = "0022125"
# searching the Id
search = ia.get_company(code)
# printing the search
print(search)
输出 :
Pixel