Open In App

Python IMDbPY – Getting bottom 100 movies

Last Updated : 22 Dec, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

In this article we will see how we can retrieve the information of bottom 100 movies in IMDb database, IMDb sets ratings to all the movies. In order to get the bottom 100 movies by IMDb we will use get_bottom100_movies method.

Syntax : imdb_object.get_bottom100_movies() Argument : It takes no argument Return : It returns list of 100 element and each element is imdb movie object

Below is the implementation 

Python3




# importing the module
import imdb
  
# creating instance of IMDb
ia = imdb.IMDb()
  
# getting top 250 movies
search = ia.get_bottom100_movies()
 
# printing only last 10 movies title
for i in range(90, 100):
    print(search[i]['title'])


Output :

Swept Away
The Adventures of Pluto Nash
Ballistic: Ecks vs. Sever
Beverly Hills Chihuahua
Holmes & Watson
Exorcist II: The Heretic
The Cat in the Hat
The Hungover Games
Street Fighter
Escape Plan 2: Hades

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads