En este artículo, veremos cómo podemos obtener la identificación de la película de las películas buscadas, la identificación de la película es básicamente una identificación única otorgada a cada película, ya que el nombre de la película puede ser el mismo pero la identificación será distinta. Usamos search_movie
el método para buscar películas con el mismo nombre.
Para obtener la identificación de la película, usamos el movieID
método.
Sintaxis: películas[0].movieID
Aquí películas es la lista de películas devuelta por search_movie y películas[0] se refieren al primer elemento de la lista
Argumento: No requiere argumento.
Retorno: devuelve una string que es ID de película
A continuación se muestra la implementación.
# importing the module import imdb # creating instance of IMDb ia = imdb.IMDb() # name name = "Udta punjab" # searching the name search = ia.search_movie(name) # loop for printing the name and id for i in range(len(search)): # getting the id id = search[i].movieID # printing it print(search[i]['title'] + " : " + id )
Producción :
Udta Punjab : 4434004 Diljit Dosanjh (Udta Punjab) : 6574338
Otro ejemplo :
# importing the module import imdb # creating instance of IMDb ia = imdb.IMDb() # name name = "3 idiots" # searching the name search = ia.search_movie(name) # loop for printing the name and id for i in range(len(search)): # getting the id id = search[i].movieID # printing it print(search[i]['title'] + " : " + id )
Producción :
3 Idiots : 1187043 3 idiotas : 3685624 3 Idiots : 12049418 3 Idiots w/ GUNS : 0222441 3 Idiots on Wheels : 6689378 3 Idiots Try Candy! : 8474256 3 Idiots; How Cho Copes with Slump : 9419952 The Idiots : 0154421 Idiots : 0341476 Vidiots : 5830890 Idiotest : 3607166 Idiotsitter : 3532050 The Idiot : 0043614 Idioten : 7147976 Idiots : 1687235 4 Idiots : 6470848 Idiots : 2622956 The Idiot : 0051762 Idiots : 6866900 Idiot : 0366028
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA