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 moduleimportimdb# creating instance of IMDbia =imdb.IMDb()# idcode ="6473300"# getting informationseries =ia.get_movie(code)# printing titleprint(series.data['title'])# printing writer nameprint(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 moduleimportimdb# creating instance of IMDbia =imdb.IMDb()# idcode ="6077448"# getting informationseries =ia.get_movie(code)# printing titleprint(series.data['title'])# printing writer nameprint(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_]
 
				 
					

