Python IMDbPY – 搜索电影
IMDbPY 是一个Python包,用于检索和管理 IMDb 的数据。
IMDb是一个在线数据库,包含与电影、电视节目、家庭视频、视频游戏和在线流媒体内容相关的信息——包括演员、制作人员和个人传记、情节摘要、琐事、粉丝和评论以及评级。
在本文中,我们将了解如何安装此模块并使用此模块获取各种信息。
安装
为了从 IMDb 中提取数据,我们必须首先安装Python IMDbP 库。这可以通过在命令提示符或终端中输入以下命令来完成:
pip install IMDbPY
搜索电影
我们可以借助 search_movie 搜索电影
Syntax : imdb_object.search_movie(name)
Argument : It takes string as argument, which is the movie name.
Return : It return list, items in list have same or similar title to the searched movie.
下面是实现
Python3
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# movie name
name = "3 idiots"
# searching the movie
search = ia.search_movie(name)
# printing the result
for i in search:
print(i)
Python3
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# movie name
name = "Tarzan the wonder car"
# searching the movie
search = ia.search_movie(name)
# printing the result
print(search)
输出 :
3 Idiots
3 idiotas
3 Idiots
3 Idiots w/ GUNS
3 Idiots on Wheels
3 Idiots Try Candy!
3 Idiots; How Cho Copes with Slump
The Idiots
Idiots
Vidiots
Idiotest
The Idiot
Idiotsitter
Idiots
Idioten
4 Idiots
Idiots
Idiots
Los 3 Idiotas
iDiots
另一个例子:
Python3
# importing the module
import imdb
# creating instance of IMDb
ia = imdb.IMDb()
# movie name
name = "Tarzan the wonder car"
# searching the movie
search = ia.search_movie(name)
# printing the result
print(search)
输出 :
[Movie id:0435437[http] title:_Taarzan: The Wonder Car (2004)_>]