Python IMDbPY – Obteniendo las mejores 250 películas

En este artículo, veremos cómo podemos recuperar la información de las 250 mejores películas en la base de datos de IMDb, IMDb establece calificaciones para todas las películas. Para obtener las 250 mejores películas de IMDb, utilizaremos el método get_top250_movies.

Sintaxis: imdb_object.get_top250_movies() 

Argumento: no requiere argumento 

Devolución: devuelve una lista de 250 elementos y cada elemento es un objeto de película imdb

A continuación se muestra la implementación. 

Python3

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

Producción :

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

Publicación traducida automáticamente

Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *