Thursday, June 11, 2026
HomeLanguagesPython IMDbPY – Getting series details from the series id

Python IMDbPY – Getting series details from the series id

In this article we will see how we can get the series details from the IMDb data base, as on the IMDb site, each TV series and also each of a TV series’ episodes is treated as a regular title, just like movie. 
 

In order do this we have to do the following –
1. With the help of get_movie method get the series details from the code 
2. Save this movie object in variable 
3. Access this movie object similar to the dictionary 
4. Print the required result 
 

Below is the implementation 
 

Python3




# importing the module
import imdb
 
# creating instance of IMDb
ia = imdb.IMDb()
 
# id
code = "6473300"
 
# getting information
series = ia.get_movie(code)
 
# printing title
print(series.data['title'])
 
# printing writer name
print(series.data['writer'])


Output : 
 

Mirzapur
[Person id:5883328[http] name:_Karan Anshuman_, Person id:4107081[http] name:_Puneet Krishna_, Person id:10172949[http] name:_Vineet Krishna_]

Another example 
 

Python3




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


Output : 
 

Sacred Games
[Person id:11351503[http] name:_Abhishek Chaudhary_, Person id:3542598[http] name:_Varun Grover_, Person id:0151512[http] name:_Vikram Chandra_]

 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS