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