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
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
23 May, 2022
Like Article
Save Article