En este artículo veremos cómo podemos buscar la empresa en la base de datos de IMDb, hay muchas empresas relacionadas con la industria cinematográfica como Marvel Studios, Disney, etc. que están presentes en la base de datos de IMDb.
Para buscar la empresa utilizaremos el método search_company.
Sintaxis: imdb_object.search_company(company_name)
Argumento: Toma una string como argumento.
Retorno: Devuelve la lista de todas las empresas con nombres similares.
A continuación se muestra la implementación.
Python3
# importing the module import imdb # creating instance of IMDb ia = imdb.IMDb() # name of the person company_name = "Marvel Studios" # searching the name of the person search = ia.search_company(company_name) # printing the result for i in search: print(i)
Producción :
Marvel Studios Barvel Studios Marvelous 1st Studio Next Level Studios Boss Level Studios Caravel Studios Land Marvel Animation Studios
Otro ejemplo:
Python3
# importing the module import imdb # creating instance of IMDb ia = imdb.IMDb() # name of the person company_name = "Alt Bala ji" # searching the name of the person search = ia.search_company(company_name) # printing the result print(search)
Producción :
[Company id:0642697[http] name:_ALTBalaji [in]_, Company id:0779280[http] name:_ALT Balaji [in]_]
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA