In this article we will see how we can retrieve the information of top 250 movies in IMDb database, IMDb sets ratings to all the movies. In order to get the top 250 movies by IMDb we will use get_top250_movies method.
Syntax : imdb_object.get_top250_movies()
Argument : It takes no argument
Return : It returns list of 250 element and each element is imdb movie object
Below is the implementation
Python3
import imdb
ia = imdb.IMDb()
search = ia.get_top250_movies()
for i in range ( 10 ):
print (search[i][ 'title' ])
|
Output :
The Shawshank Redemption
The Godfather
The Godfather: Part II
The Dark Knight
12 Angry Men
Schindler's List
The Lord of the Rings: The Return of the King
Pulp Fiction
The Good, the Bad and the Ugly
The Lord of the Rings: The Fellowship of the Ring