Open In App

Python IMDbPY – Getting name from searched company

Improve
Improve
Like Article
Like
Save
Share
Report

In this article we will see how we can get the name of movie company from the searched list of companies, we use search_company method to find all the related companies.

search_company method returns list and each element of list work as a dictionary i.e. they can be queried by giving the key of the data, here key will be name.

Syntax : companies[0][‘name’]

Here companies is the list return by search_company method and companies[0] refer to the first element of list.

Return : It returns string i.e name.

Below is the implementation:




# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# name of the company
name = "Universal Studios Hollywood"
   
# searching the name of the company
search = ia.search_company(name)
  
# printing the search
print(search)
  
# printing the name
for i in range(len(search)):
    print(search[i]['name'])


Output :

[Company id:0017927[http] name:_Universal Studios Hollywood [us]_]
Universal Studios Hollywood

Another example




# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# name of the company
name = "Walt Disney"
   
# searching the name of the company
search = ia.search_company(name)
  
  
# printing the name
for i in range(len(search)):
    print(search[i]['name'])


Output :

Walt Disney Studios Motion Pictures
Walt Disney Pictures
Walt Disney Studios Motion Pictures
Walt Disney Studios
Walt Disney Animation Studios
The Walt Disney Company
Walt Disney Company
Walt Disney Company
Walt Disney Television
Walt Disney Home Video
Walt Disney Home Video
Walt Disney Productions
Walt Disney Company Nordic
Walt Disney Company
Walt Disney Attractions
The Walt Disney Company
Walt Disney Animation U.K.
Walt Disney Motion Pictures Group
Walt Disney Company
Walt Disney International


Last Updated : 22 Apr, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads