Python IMDbPY – 获取系列证书
在本文中,我们将了解如何获得系列证书,证书基本上是颁发给每个系列的证书,它讲述了电影的性质,例如年龄限制证书,每个证书因国家而异。
In order to get this we have to do the following –
1. Get the series details with the help of get_movie method
2. As this object will act as dictionary therefore we have to filter the object
3. Get the main data of object with the help of data method which will return dictionary
4. Get the certificates details from the dictionary
下面是实现
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# id
code = "6468322"
# getting information
series = ia.get_movie(code)
# getting certificates of the series
certificate = series.data['certificates']
# printing the object i.e name
print(series)
# print the certificate
print(certificate)
输出 :
Money Heist
['Argentina:16', 'Australia:MA15+::(Netflix self-rating)', 'Brazil:16', 'Canada:TV-MA::(self-applied)', 'France:16', 'Germany:16', 'India:16+::(self-applied)', 'Italy:VM14', 'Japan:R18+::(self-applied)', 'Mexico:TV-MA::(self-applied)', 'Netherlands:12::(season 1)', 'Netherlands:16::(seasons 2-4)', 'Singapore:M18', 'South Korea:18', 'Spain:16', 'Turkey:15+', 'United Kingdom:15', 'United Kingdom:18::(season 4)', 'United States:TV-MA', 'Vietnam:C18']
另一个例子
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# id
code = "6077448"
# getting information
series = ia.get_movie(code)
# getting certificates of the series
certificate = series.data['certificates']
# printing the object i.e name
print(series)
# print the certificate
print(certificate)
输出 :
Sacred Games
[‘Argentina:16’, ‘Australia:MA15+’, ‘Brazil:18::(self-applied)’, ‘France:16’, ‘Germany:16’, ‘India:A’, ‘India:UA::(trailer)’, ‘Italy:VM18’, ‘Netherlands:16’, ‘Norway:16::(Netflix self-rating)’, ‘Singapore:R21’, ‘South Korea:18’, ‘Spain:16’, ‘United Kingdom:18’, ‘United States:TV-MA::(Netflix)’]