Open In App

Python IMDbPY – Default info of Movie object

Last Updated : 22 Apr, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In this article we will see how we can achieve the set of information which retrieved by default by get_movie method, with the help of get_movie_infoset we can know all the information that we can achieve of the movie. But all the information is not extracted as it will be time consuming process.

In order to know the default information that a movie object extracts we will use default_info method.

Syntax : movie.default_info

Here movie is imdb Movie object

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()
   
# ID
code = "1187043"
    
# searching the Id
movie = ia.get_movie(code)
  
# getting default info
info = movie.default_info
  
# printing movie title
print(movie['title'])
  
# printing the info
print(info)


Output :

3 Idiots
('main', 'plot')

Another example




# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# ID
code = "4434004"
    
# searching the Id
movie = ia.get_movie(code)
  
# getting default info
info = movie.default_info
  
# printing movie title
print(movie['title'])
  
# printing the info
print(info)


Output :

Udta Punjab
('main', 'plot')


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads