Python IMDbPY - 使用电影 ID 检索电影
在本文中,我们将了解如何使用电影 ID 检索电影的数据,电影 ID 是 IMDb 为每部电影提供的唯一 ID。我们可以使用search_movie
方法按名称搜索电影,但它会给出许多电影,因为它们具有相同的名称,因此通过其 id 检索电影是更好的选择。
为了通过 id 搜索电影,我们使用get_movie
方法。
Syntax : imdb_object.get_movie(id)
Argument : It takes string as argument which is movie id
Return : It returns imdb Movie object.
下面是实现。
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# ID
code = "1187043"
# searching the Id
search = ia.get_movie(code)
# printing the search
print(search)
输出 :
3 Idiots
另一个例子
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# ID
code = "4434004"
# searching the Id
search = ia.get_movie(code)
# printing the search
print(search)
输出 :
Udta Punjab