10 lines
117 B
Python
10 lines
117 B
Python
|
from imdb import IMDb
|
||
|
|
||
|
|
||
|
def get_movie(imdb_id):
|
||
|
ia = IMDb()
|
||
|
|
||
|
movie = ia.get_movie(imdb_id)
|
||
|
|
||
|
return movie
|