2

我想使用 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)
4

1 回答 1

4

您需要再添加一个参数info='keywords'来获取电影的关键字。

from imdb import IMDb
ia = IMDb()
black_panther = ia.get_movie('1825683', info='keywords')
print(black_panther['keywords'])
于 2018-11-04T09:37:19.173 回答