Open In App

Python IMDbPY – Getting IMDb index of person

Last Updated : 18 Aug, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

In this article we will see how we can get the index of person from the imdb database, imdb have given people index to categorize them index is not numerical value it is roman number for example Salman Khan, SRK has got (I) as index also some people are not indexed. Below is the image to show how index of person looks like
 

 

In order to do this we have to do the following –
1. Get the person object with the help of id by using get_person_filmography method 
2. Get the index from it using result[‘data’][‘imdbIndex’] as keys 
3. Print the result 
 

Note : Output will be the link of the image i.e string data type not actual image
Below is the implementation 
 

Python3




# importing the module
import imdb
 
# creating instance of IMDb
ia = imdb.IMDb()
 
# person id
code = "1372788"
 
# getting person object
actor = ia.get_person_filmography(code)
 
# printing object name
print(actor['data']['name'])
 
# getting index
index = actor['data']['imdbIndex']
 
# printing
print(index)


Output : 
 

Shahid Kapoor
I

Another example 
 

Python3




# importing the module
import imdb
 
# creating instance of IMDb
ia = imdb.IMDb()
 
# person id
code = "0262635"
 
# getting person object
actor = ia.get_person_filmography(code)
 
# printing object name
print(actor['data']['name'])
 
# getting index
index = actor['data']['imdbIndex']
 
# printing
print(index)


Output : 
 

Chris Evans
V

 



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads