Open In App

Python IMDbPY – Getting the certificates of the series

Last Updated : 10 May, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In this article we will see how we can get the certificates of series, certificates is basically certificated given to each series which tells about the nature of movie such as age-restricted certificate each certificate vary from country to country.

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

Below is the implementation




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


Output :

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']

Another example




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


Output :

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)’]



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads