【发布时间】:2019-04-07 21:21:24
【问题描述】:
我想使用 IMDb 中的 IMDBPY 检索特定电影 ID 的情节关键字。有什么想法吗?我只知道
from imdb import IMDb
ia = IMDb()
# get a movie and print its name
the_matrix = ia.get_movie('0133094')
print(the_matrix)
【问题讨论】:
-
plot 关键字是什么意思?
-
plot = ia.get_keyword('plot', results=5)这是你要找的吗? -
在哪里添加电影 ID?
-
你想做什么?你想得到一部电影的关键词吗?或者你想用 plot 关键字搜索所有电影?
标签: python information-retrieval imdb imdbpy