Open In App

Python IMDbPY – Person info set

Improve
Improve
Like Article
Like
Save
Share
Report

IMDb data base have every information of the person i.e person having what awards, biography etc but in order to retrieve them problem occur as there will be lots of web pages which can be both time-and bandwidth-consuming, especially if you’re interested in only a small part of the information.

If we want to fetch only specific information we can fetch it by passing an optional information parameter to the get_person method. In order to get information set of IMDb Person data set we will use get_person_infoset method.

Syntax : imdb_object.get_person_infoset()

Argument : It takes no argument.

Return : It return list.

Below is the implementation




# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# getting the person info set of data base
info = ia.get_person_infoset()
   
# printing the list 
for element in info:
    print(element)


Output :

awards
biography
filmography
genres links
keywords links
main
news
official sites
other works
publicity

Last Updated : 22 Apr, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads