Thursday, October 9, 2025
HomeLanguagesPython IMDbPY – Getting bottom 100 movies

Python IMDbPY – Getting bottom 100 movies

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
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6712 POSTS0 COMMENTS
Nicole Veronica
11875 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS