Python IMDbPY – Getting the certificates of the series Last Updated : 10 May, 2020 Comments Improve Suggest changes Like Article Like 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 Python3 1== # 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 Python3 1== # 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)'] Comment More infoAdvertise with us Next Article Python IMDbPY â Getting cast of the series R rakshitarora Follow Improve Article Tags : Python Python IMDbPY-module Practice Tags : python Similar Reads Python IMDbPY â Getting the countries of the series In this article we will see how we can get the countries of the series, some series are country based i.e whole story revolve around the single country although there are some series story revolves around multiple countries. In order to get this we have to do the following - 1. Get the series detail 2 min read Python IMDbPY â Getting the countries of the series In this article we will see how we can get the countries of the series, some series are country based i.e whole story revolve around the single country although there are some series story revolves around multiple countries. In order to get this we have to do the following - 1. Get the series detail 2 min read Python IMDbPY â Getting cast of the series In this article we will see how we can get the cast of the series. Cast is basically a group of actor/persons who work in the series they can be director or actor as well. 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 2 min read Python IMDbPY â Getting genres of the series In this article we will see how we can get the genres of the series, genres are basically category to divide a series for example romantic, drama, action etc. In order to get the genres of the movie we have to do the following - 1. Get the series details with the help of get_movie method 2. As this 2 min read Python IMDbPY â Getting genres of the series In this article we will see how we can get the genres of the series, genres are basically category to divide a series for example romantic, drama, action etc. In order to get the genres of the movie we have to do the following - 1. Get the series details with the help of get_movie method 2. As this 2 min read Python IMDbPY â Getting the country codes of the series In this article we will see how we can get the country codes of series, some series are country based i.e whole story revolve around the single country although there are some series story revolves around multiple countries and each country have their country code for example 'in' for india. In orde 2 min read Like