Python IMDbPY – Obtención de la trama de la serie

En este artículo veremos cómo podemos conseguir la trama de la serie. La trama es la secuencia de eventos donde cada uno afecta al siguiente a través del principio de causa y efecto. Los eventos causales de una trama se pueden considerar como una serie de eventos vinculados por el conector «y así».

Para obtener esto, tenemos que hacer lo siguiente:

1. Obtenga los detalles de la serie con la ayuda del método get_movie
2. Como este objeto actuará como diccionario, por lo tanto, debemos filtrar el objeto
3. Obtenga los datos principales del objeto con la ayuda del método de datos que devolverá el diccionario
4. Obtenga el trama del diccionario

A continuación se muestra la implementación.

# importing the module
import imdb
  
# creating instance of IMDb
ia = imdb.IMDb()
  
# id
code = "6077448"
  
# getting information
series = ia.get_movie(code)
  
# getting plot of the series
plot = series.data['plot']
  
# printing the object i.e name
print(series)
  
# print the plot
print(plot)

Producción :

Sacred Games
['A link in their pasts leads an honest cop to a fugitive gang boss, whose cryptic warning spurs the officer on a quest to save Mumbai from cataclysm.', "Sartaj Singh, a Mumbai police officer, receives an anonymous phone call from a gangster who threatens to blow up the entire city. Amid the corrupt standards of Indian law enforcement begins a battle between a 'nobody' cop and ruthless gangster who perceives (sometimes) himself to be a God.::Cinema Theories", "Set in Mumbai, _Sacred Games_ (qv) delves into the city's intricate web of organized crime, corruption, politics and espionage that lie beneath India's economic renaissance. It is an epic masterwork of exceptional richness and power that interweaves the lives of the privileged, the famous, the wretched and the bloodthirsty.::ahmetkozan", 'Sartaj Singh a troubled police officer in Mumbai gets a call from gangster Ganesh Gaitonde who was missing for the last 16 years.He tells Sartaj that he has only 25 days to save Mumbai. Sartaj digs his past as to what made him a powerful gangster where he is helped by RNA officer Anjali Mathur.::alex.mjacko@gmail.com']

Otro ejemplo

# importing the module
import imdb
  
# creating instance of IMDb
ia = imdb.IMDb()
  
# id
code = "6468322"
  
# getting information
series = ia.get_movie(code)
  
# getting plot of the series
plot = series.data['plot']
  
# printing the object i.e name
print(series)
  
# print the plot
print(plot)

Producción :

Money Heist
['An unusual group of robbers attempt to carry out the most perfect robbery in Spanish history - stealing 2.4 billion euros from the Royal Mint of Spain.']

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 *