📜  Python IMDbPY – 获取系列证书

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

Python IMDbPY – 获取系列证书

在本文中,我们将了解如何获得系列证书,证书基本上是颁发给每个系列的证书,它讲述了电影的性质,例如年龄限制证书,每个证书因国家而异。

下面是实现

# 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)

输出 :