Open In App

Python IMDbPY – Retrieving company using company ID

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

In this article we will see how we can retrieve the data of company using its company ID, company id is the unique id given to each company by IMDb. We can use search_company method to search the companies by their name but it gives many companies as they have same names therefore retrieving a company by its id is a better option.

In order to search a company by its id we use get_company method.

Syntax : imdb_object.get_company(id)

Argument : It takes string as argument which is company id

Return : It returns imdb Company object.

Below is the implementation.




# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# ID
code = "0051941"
   
# searching the Id
search = ia.get_company(code)
  
# printing the search
print(search)


Output :

Marvel Studios

Another example :




# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# ID
code = "0022125"
   
# searching the Id
search = ia.get_company(code)
  
# printing the search
print(search)


Output :

Pixel

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