📌  相关文章
📜  Python IMDbPY - 电影信息集

📅  最后修改于: 2022-05-13 01:55:46.860000             🧑  作者: Mango

Python IMDbPY - 电影信息集

IMDb 数据库包含电影的所有信息,即电影上映时间、评级、位置等,但为了检索它们,会出现问题,因为会有很多网页既耗时又耗带宽,特别是如果你只对一小部分信息感兴趣。

如果我们只想获取特定信息,我们可以通过将可选信息参数传递给get_movie方法来获取它。为了获取 IMDb 数据集的信息集,我们将使用get_movie_infoset方法。

下面是实现

# importing the module
import imdb
   
# creating instance of IMDb
ia = imdb.IMDb()
   
# getting the movie info set of data base
info = ia.get_movie_infoset()
   
# printing the list 
for element in info:
    print(element)

输出 :

airing
akas
alternate versions
awards
connections
crazy credits
critic reviews
episodes
external reviews
external sites
faqs
full credits
goofs
keywords
locations
main
misc sites
news
official sites
parents guide
photo sites
plot
quotes
release dates
release info
reviews
sound clips
soundtrack
synopsis
taglines
technical
trivia
tv schedule
video clips
vote details