Open In App

Python IMDbPY – Getting birth place of person

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

In this article we will see how we can get the birth place of the person from the person object, imdb person object act similar to dictionary, therefore, getting place of birth from person object is similar from getting required information from the dictionary.

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 method 
2. Get the birth place from it using result[‘birth info’][‘birth place’] as keys 
3. Print the result 
 

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(code)
 
# printing object it prints its name
print(actor)
 
# getting birth place
place = actor['birth info']['birth place']
 
# printing the place
print(place)


Output :  

Shahid Kapoor
New Delhi, India

Another example:

Python3




# importing the module
import imdb
 
# creating instance of IMDb
ia = imdb.IMDb()
 
# person id
code = "1596350"
 
# getting person object
actor = ia.get_person(code)
 
# printing object it prints its name
print(actor)
 
# getting birth place
place = actor['birth info']['birth place']
 
# printing the place
print(place)


Output : 

Nawazuddin Siddiqui
Budhana, Muzaffarnagar, Uttar Pradesh, India


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads